[][src]Struct shader_types::Vec2

#[repr(C, align(8))]pub struct Vec2 {
    pub inner: [f32; 2],
}

Vector of 2 f32 values. Has size 8 and alignment 8.

Fields

inner: [f32; 2]

Implementations

impl Vec2[src]

pub fn new(inner: [f32; 2]) -> Self[src]

pub fn from_mint<T: Into<Vector2<f32>>>(value: T) -> Self[src]

This is supported on crate feature mint only.

Construct a Vec2 from any type which is convertable into a mint::Vector2<f32>.

Trait Implementations

impl Clone for Vec2[src]

impl Copy for Vec2[src]

impl Debug for Vec2[src]

impl Default for Vec2[src]

impl From<[f32; 2]> for Vec2[src]

impl From<Vec2> for Vector2<f32>[src]

impl From<Vec2> for [f32; 2][src]

impl From<Vector2<f32>> for Vec2[src]

impl PartialEq<Vec2> for Vec2[src]

impl PartialOrd<Vec2> for Vec2[src]

impl Pod for Vec2[src]

impl StructuralPartialEq for Vec2[src]

impl Zeroable for Vec2[src]

Auto Trait Implementations

impl RefUnwindSafe for Vec2

impl Send for Vec2

impl Sync for Vec2

impl Unpin for Vec2

impl UnwindSafe for Vec2

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.