[][src]Struct winconsole::console::Vector2

pub struct Vector2<T> {
    pub x: T,
    pub y: T,
}

A 2-dimensional vector.

Fields

x: T

The x component.

y: T

The y component.

Methods

impl<T> Vector2<T>[src]

pub fn new(x: T, y: T) -> Vector2<T>[src]

Creates a new Vector2.

Arguments

x - The x component of the vector.
y - The y component of the vector.

Trait Implementations

impl<T: PartialEq> PartialEq<Vector2<T>> for Vector2<T>[src]

impl<T: Clone> Clone for Vector2<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Eq> Eq for Vector2<T>[src]

impl<T> Into<Vector2<T>> for Vector2<T>[src]

impl<T: Copy> Copy for Vector2<T>[src]

impl<T: Debug> Debug for Vector2<T>[src]

impl<T: Hash> Hash for Vector2<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T> Serialize for Vector2<T> where
    T: Serialize
[src]

impl<'de, T> Deserialize<'de> for Vector2<T> where
    T: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<T> Send for Vector2<T> where
    T: Send

impl<T> Sync for Vector2<T> where
    T: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]