[][src]Enum nuklear::DrawVertexLayoutFormat

#[repr(C)]pub enum DrawVertexLayoutFormat {
    Char,
    Short,
    Int,
    Uchar,
    Ushort,
    Uint,
    Float,
    Double,
    R8G8B8,
    R16G16B16,
    R32G32B32,
    R8G8B8A8,
    B8G8R8A8,
    R16G15B16A16,
    R32G32B32A32,
    R32G32B32A32Float,
    R32G32B32A32Double,
    Rgb32,
    Rgba32,
    Count,
}

Variants

Char
Short
Int
Uchar
Ushort
Uint
Float
Double
R8G8B8
R16G16B16
R32G32B32
R8G8B8A8
B8G8R8A8
R16G15B16A16
R32G32B32A32
R32G32B32A32Float
R32G32B32A32Double
Rgb32
Rgba32
Count

Trait Implementations

impl Clone for DrawVertexLayoutFormat[src]

impl Copy for DrawVertexLayoutFormat[src]

impl Eq for DrawVertexLayoutFormat[src]

impl<'a> From<&'a u32> for &'a DrawVertexLayoutFormat[src]

impl From<DrawVertexLayoutFormat> for nk_draw_vertex_layout_format[src]

impl From<u32> for DrawVertexLayoutFormat[src]

impl PartialEq<DrawVertexLayoutFormat> for DrawVertexLayoutFormat[src]

impl StructuralEq for DrawVertexLayoutFormat[src]

impl StructuralPartialEq for DrawVertexLayoutFormat[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<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.