[][src]Struct spirv_reflect::ffi::SpvReflectEntryPoint

#[repr(C)]
pub struct SpvReflectEntryPoint {
    pub name: *const c_char,
    pub id: u32,
    pub spirv_execution_model: SpvExecutionModel,
    pub shader_stage: SpvReflectShaderStageFlagBits,
    pub input_variable_count: u32,
    pub input_variables: *mut SpvReflectInterfaceVariable,
    pub output_variable_count: u32,
    pub output_variables: *mut SpvReflectInterfaceVariable,
    pub descriptor_set_count: u32,
    pub descriptor_sets: *mut SpvReflectDescriptorSet,
    pub used_uniform_count: u32,
    pub used_uniforms: *mut u32,
    pub used_push_constant_count: u32,
    pub used_push_constants: *mut u32,
}

@struct SpvReflectEntryPoint

Fields

name: *const c_charid: u32spirv_execution_model: SpvExecutionModelshader_stage: SpvReflectShaderStageFlagBitsinput_variable_count: u32input_variables: *mut SpvReflectInterfaceVariableoutput_variable_count: u32output_variables: *mut SpvReflectInterfaceVariabledescriptor_set_count: u32descriptor_sets: *mut SpvReflectDescriptorSetused_uniform_count: u32used_uniforms: *mut u32used_push_constant_count: u32used_push_constants: *mut u32

Trait Implementations

impl Clone for SpvReflectEntryPoint[src]

impl Copy for SpvReflectEntryPoint[src]

impl Debug for SpvReflectEntryPoint[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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