[][src]Enum web_glitz::pipeline::graphics::VertexAttributeType

pub enum VertexAttributeType {
    Float,
    FloatVector2,
    FloatVector3,
    FloatVector4,
    FloatMatrix2x2,
    FloatMatrix2x3,
    FloatMatrix2x4,
    FloatMatrix3x2,
    FloatMatrix3x3,
    FloatMatrix3x4,
    FloatMatrix4x2,
    FloatMatrix4x3,
    FloatMatrix4x4,
    Integer,
    IntegerVector2,
    IntegerVector3,
    IntegerVector4,
    UnsignedInteger,
    UnsignedIntegerVector2,
    UnsignedIntegerVector3,
    UnsignedIntegerVector4,
}

Enumerates the possible attribute types that might be required to fill an attribute slot.

See also [AttributeSlotDescriptor].

Variants

Float
FloatVector2
FloatVector3
FloatVector4
FloatMatrix2x2
FloatMatrix2x3
FloatMatrix2x4
FloatMatrix3x2
FloatMatrix3x3
FloatMatrix3x4
FloatMatrix4x2
FloatMatrix4x3
FloatMatrix4x4
Integer
IntegerVector2
IntegerVector3
IntegerVector4
UnsignedInteger
UnsignedIntegerVector2
UnsignedIntegerVector3
UnsignedIntegerVector4

Trait Implementations

impl Clone for VertexAttributeType[src]

impl Copy for VertexAttributeType[src]

impl Debug for VertexAttributeType[src]

impl PartialEq<VertexAttributeType> for VertexAttributeType[src]

impl StructuralPartialEq for VertexAttributeType[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> From<T> for T[src]

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

impl<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[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.