[][src]Struct mint::Vector2

#[repr(C)]
pub struct Vector2<T> {
    pub x: T,
    pub y: T,
}

Fields

x: Ty: T

Methods

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

pub fn from_slice(slice: &[T]) -> Self[src]

Trait Implementations

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

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

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

impl<T> AsRef<[T; 2]> for Vector2<T>[src]

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

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

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

impl<T> From<[T; 2]> for Vector2<T>[src]

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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> From<T> for 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]