[][src]Enum vulkano::pipeline::vertex::VertexMemberTy

pub enum VertexMemberTy {
    I8,
    U8,
    I16,
    U16,
    I32,
    U32,
    F32,
    F64,
}

Type of a member of a vertex struct.

Variants

I8
U8
I16
U16
I32
U32
F32
F64

Implementations

impl VertexMemberTy[src]

pub fn matches(&self, array_size: usize, format: Format, num_locs: u32) -> bool[src]

Returns true if a combination of (type, array_size) matches a format.

Trait Implementations

impl Clone for VertexMemberTy[src]

impl Copy for VertexMemberTy[src]

impl Debug for VertexMemberTy[src]

impl Eq for VertexMemberTy[src]

impl PartialEq<VertexMemberTy> for VertexMemberTy[src]

impl StructuralEq for VertexMemberTy[src]

impl StructuralPartialEq for VertexMemberTy[src]

Auto Trait Implementations

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> Content for T[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.