Enum gltfgen::attrib::ComponentType[][src]

pub enum ComponentType {
    I8,
    U8,
    I16,
    U16,
    U32,
    F32,
}

Variants

I8

Signed 8-bit integer. Corresponds to GL_BYTE.

U8

Unsigned 8-bit integer. Corresponds to GL_UNSIGNED_BYTE.

I16

Signed 16-bit integer. Corresponds to GL_SHORT.

U16

Unsigned 16-bit integer. Corresponds to GL_UNSIGNED_SHORT.

U32

Unsigned 32-bit integer. Corresponds to GL_UNSIGNED_INT.

F32

Single precision (32-bit) floating point number. Corresponds to GL_FLOAT.

Trait Implementations

impl Clone for ComponentType[src]

impl Copy for ComponentType[src]

impl Debug for ComponentType[src]

impl<'de> Deserialize<'de> for ComponentType[src]

impl Into<ComponentType> for ComponentType[src]

impl PartialEq<ComponentType> for ComponentType[src]

impl StructuralPartialEq for ComponentType[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsSlice<T> for T

impl<T> AttributeValue for T where
    T: Clone + PartialEq<T> + Debug + Send + Sync + 'static, 
[src]

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

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

impl<T> Bytes for T[src]

impl<T> CloneBytes for T where
    T: 'static + Clone

impl<T> CopyElem for T where
    T: Any + Copy

impl<T> DebugBytes for T where
    T: 'static + Debug

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> DropBytes for T where
    T: 'static, 

impl<T> Elem for T where
    T: Any + DropBytes, 

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

impl<'a, S, I> Get<'a, I> for S where
    I: GetIndex<'a, S>, 

type Output = <I as GetIndex<'a, S>>::Output

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

impl<S, I> Isolate<I> for S where
    I: IsolateIndex<S>, 

type Output = <I as IsolateIndex<S>>::Output

impl<T> PartialEqBytes for T where
    T: 'static + PartialEq<T>, 

impl<T> Pod for T where
    T: 'static + Copy + Send + Sync + Any
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, N> PushArrayToVec<N> for T where
    T: Clone,
    N: Array<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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.