Struct vulkanalia::vk::IndirectCommandsLayoutTokenNV[][src]

#[repr(C)]pub struct IndirectCommandsLayoutTokenNV {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub token_type: IndirectCommandsTokenTypeNV,
    pub stream: u32,
    pub offset: u32,
    pub vertex_binding_unit: u32,
    pub vertex_dynamic_stride: u32,
    pub pushconstant_pipeline_layout: PipelineLayout,
    pub pushconstant_shader_stage_flags: ShaderStageFlags,
    pub pushconstant_offset: u32,
    pub pushconstant_size: u32,
    pub indirect_state_flags: IndirectStateFlagsNV,
    pub index_type_count: u32,
    pub index_types: *const IndexType,
    pub index_type_values: *const u32,
}

Fields

s_type: StructureTypenext: *const c_voidtoken_type: IndirectCommandsTokenTypeNVstream: u32offset: u32vertex_binding_unit: u32vertex_dynamic_stride: u32pushconstant_pipeline_layout: PipelineLayoutpushconstant_shader_stage_flags: ShaderStageFlagspushconstant_offset: u32pushconstant_size: u32indirect_state_flags: IndirectStateFlagsNVindex_type_count: u32index_types: *const IndexTypeindex_type_values: *const u32

Trait Implementations

impl Cast for IndirectCommandsLayoutTokenNV[src]

type Target = IndirectCommandsLayoutTokenNV

The other type this type type can be used interchangeably with in FFI.

impl Clone for IndirectCommandsLayoutTokenNV[src]

impl Copy for IndirectCommandsLayoutTokenNV[src]

impl Debug for IndirectCommandsLayoutTokenNV[src]

impl Default for IndirectCommandsLayoutTokenNV[src]

impl Eq for IndirectCommandsLayoutTokenNV[src]

impl<'b> HasBuilder<'b> for IndirectCommandsLayoutTokenNV[src]

type Builder = IndirectCommandsLayoutTokenNVBuilder<'b>

The associated builder for this type.

impl Hash for IndirectCommandsLayoutTokenNV[src]

impl PartialEq<IndirectCommandsLayoutTokenNV> for IndirectCommandsLayoutTokenNV[src]

impl StructuralEq for IndirectCommandsLayoutTokenNV[src]

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