[][src]Struct fna3d_sys::mojo::MOJOSHADER_preshader

#[repr(C)]pub struct MOJOSHADER_preshader {
    pub literal_count: c_uint,
    pub literals: *mut f64,
    pub temp_count: c_uint,
    pub symbol_count: c_uint,
    pub symbols: *mut MOJOSHADER_symbol,
    pub instruction_count: c_uint,
    pub instructions: *mut MOJOSHADER_preshaderInstruction,
    pub register_count: c_uint,
    pub registers: *mut f32,
    pub malloc: MOJOSHADER_malloc,
    pub free: MOJOSHADER_free,
    pub malloc_data: *mut c_void,
}

Fields

literal_count: c_uintliterals: *mut f64temp_count: c_uintsymbol_count: c_uintsymbols: *mut MOJOSHADER_symbolinstruction_count: c_uintinstructions: *mut MOJOSHADER_preshaderInstructionregister_count: c_uintregisters: *mut f32malloc: MOJOSHADER_mallocfree: MOJOSHADER_freemalloc_data: *mut c_void

Trait Implementations

impl Clone for MOJOSHADER_preshader[src]

impl Copy for MOJOSHADER_preshader[src]

impl Debug for MOJOSHADER_preshader[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.