Struct vulkanalia::vk::GeneratedCommandsInfoNV[][src]

#[repr(C)]pub struct GeneratedCommandsInfoNV {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub pipeline_bind_point: PipelineBindPoint,
    pub pipeline: Pipeline,
    pub indirect_commands_layout: IndirectCommandsLayoutNV,
    pub stream_count: u32,
    pub streams: *const IndirectCommandsStreamNV,
    pub sequences_count: u32,
    pub preprocess_buffer: Buffer,
    pub preprocess_offset: u64,
    pub preprocess_size: u64,
    pub sequences_count_buffer: Buffer,
    pub sequences_count_offset: u64,
    pub sequences_index_buffer: Buffer,
    pub sequences_index_offset: u64,
}

Fields

s_type: StructureTypenext: *const c_voidpipeline_bind_point: PipelineBindPointpipeline: Pipelineindirect_commands_layout: IndirectCommandsLayoutNVstream_count: u32streams: *const IndirectCommandsStreamNVsequences_count: u32preprocess_buffer: Bufferpreprocess_offset: u64preprocess_size: u64sequences_count_buffer: Buffersequences_count_offset: u64sequences_index_buffer: Buffersequences_index_offset: u64

Trait Implementations

impl Cast for GeneratedCommandsInfoNV[src]

type Target = GeneratedCommandsInfoNV

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

impl Clone for GeneratedCommandsInfoNV[src]

impl Copy for GeneratedCommandsInfoNV[src]

impl Debug for GeneratedCommandsInfoNV[src]

impl Default for GeneratedCommandsInfoNV[src]

impl Eq for GeneratedCommandsInfoNV[src]

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

type Builder = GeneratedCommandsInfoNVBuilder<'b>

The associated builder for this type.

impl Hash for GeneratedCommandsInfoNV[src]

impl PartialEq<GeneratedCommandsInfoNV> for GeneratedCommandsInfoNV[src]

impl StructuralEq for GeneratedCommandsInfoNV[src]

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