[][src]Struct vulkanalia::vk::GeneratedCommandsInfoNVBuilder

#[repr(transparent)]pub struct GeneratedCommandsInfoNVBuilder<'b> { /* fields omitted */ }

A builder for a GeneratedCommandsInfoNV.

Implementations

impl<'b> GeneratedCommandsInfoNVBuilder<'b>[src]

pub fn pipeline_bind_point(self, pipeline_bind_point: PipelineBindPoint) -> Self[src]

pub fn pipeline(self, pipeline: Pipeline) -> Self[src]

pub fn indirect_commands_layout(
    self,
    indirect_commands_layout: IndirectCommandsLayoutNV
) -> Self
[src]

pub fn streams(
    self,
    streams: &'b [impl Cast<Target = IndirectCommandsStreamNV>]
) -> Self
[src]

pub fn sequences_count(self, sequences_count: u32) -> Self[src]

pub fn preprocess_buffer(self, preprocess_buffer: Buffer) -> Self[src]

pub fn preprocess_offset(self, preprocess_offset: DeviceSize) -> Self[src]

pub fn preprocess_size(self, preprocess_size: DeviceSize) -> Self[src]

pub fn sequences_count_buffer(self, sequences_count_buffer: Buffer) -> Self[src]

pub fn sequences_count_offset(self, sequences_count_offset: DeviceSize) -> Self[src]

pub fn sequences_index_buffer(self, sequences_index_buffer: Buffer) -> Self[src]

pub fn sequences_index_offset(self, sequences_index_offset: DeviceSize) -> Self[src]

pub fn build(self) -> GeneratedCommandsInfoNV[src]

Trait Implementations

impl<'b> Cast for GeneratedCommandsInfoNVBuilder<'b>[src]

type Target = GeneratedCommandsInfoNV

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

impl<'b> Clone for GeneratedCommandsInfoNVBuilder<'b>[src]

impl<'b> Copy for GeneratedCommandsInfoNVBuilder<'b>[src]

impl<'b> Debug for GeneratedCommandsInfoNVBuilder<'b>[src]

impl<'b> Default for GeneratedCommandsInfoNVBuilder<'b>[src]

impl<'b> Deref for GeneratedCommandsInfoNVBuilder<'b>[src]

type Target = GeneratedCommandsInfoNV

The resulting type after dereferencing.

impl<'b> DerefMut for GeneratedCommandsInfoNVBuilder<'b>[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.