#[repr(transparent)]pub struct DrawIndirectCommandBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> DrawIndirectCommandBuilder<'a>
impl<'a> DrawIndirectCommandBuilder<'a>
pub fn vertex_count(self, vertex_count: u32) -> DrawIndirectCommandBuilder<'a>
pub fn instance_count(
self,
instance_count: u32
) -> DrawIndirectCommandBuilder<'a>
pub fn first_vertex(self, first_vertex: u32) -> DrawIndirectCommandBuilder<'a>
pub fn first_instance(
self,
first_instance: u32
) -> DrawIndirectCommandBuilder<'a>
sourcepub fn build(self) -> DrawIndirectCommand
pub fn build(self) -> DrawIndirectCommand
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations
sourceimpl<'a> Deref for DrawIndirectCommandBuilder<'a>
impl<'a> Deref for DrawIndirectCommandBuilder<'a>
type Target = DrawIndirectCommand
type Target = DrawIndirectCommand
The resulting type after dereferencing.
sourcefn deref(&self) -> &<DrawIndirectCommandBuilder<'a> as Deref>::Target
fn deref(&self) -> &<DrawIndirectCommandBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for DrawIndirectCommandBuilder<'a>
impl<'a> DerefMut for DrawIndirectCommandBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <DrawIndirectCommandBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <DrawIndirectCommandBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for DrawIndirectCommandBuilder<'a>
impl<'a> Send for DrawIndirectCommandBuilder<'a>
impl<'a> Sync for DrawIndirectCommandBuilder<'a>
impl<'a> Unpin for DrawIndirectCommandBuilder<'a>
impl<'a> UnwindSafe for DrawIndirectCommandBuilder<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more