#[repr(transparent)]pub struct DrawIndexedIndirectCommandBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> DrawIndexedIndirectCommandBuilder<'a>
impl<'a> DrawIndexedIndirectCommandBuilder<'a>
pub fn index_count(
self,
index_count: u32
) -> DrawIndexedIndirectCommandBuilder<'a>
pub fn instance_count(
self,
instance_count: u32
) -> DrawIndexedIndirectCommandBuilder<'a>
pub fn first_index(
self,
first_index: u32
) -> DrawIndexedIndirectCommandBuilder<'a>
pub fn vertex_offset(
self,
vertex_offset: i32
) -> DrawIndexedIndirectCommandBuilder<'a>
pub fn first_instance(
self,
first_instance: u32
) -> DrawIndexedIndirectCommandBuilder<'a>
sourcepub fn build(self) -> DrawIndexedIndirectCommand
pub fn build(self) -> DrawIndexedIndirectCommand
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 DrawIndexedIndirectCommandBuilder<'a>
impl<'a> Deref for DrawIndexedIndirectCommandBuilder<'a>
type Target = DrawIndexedIndirectCommand
type Target = DrawIndexedIndirectCommand
The resulting type after dereferencing.
sourcefn deref(&self) -> &<DrawIndexedIndirectCommandBuilder<'a> as Deref>::Target
fn deref(&self) -> &<DrawIndexedIndirectCommandBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for DrawIndexedIndirectCommandBuilder<'a>
impl<'a> DerefMut for DrawIndexedIndirectCommandBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <DrawIndexedIndirectCommandBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <DrawIndexedIndirectCommandBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for DrawIndexedIndirectCommandBuilder<'a>
impl<'a> Send for DrawIndexedIndirectCommandBuilder<'a>
impl<'a> Sync for DrawIndexedIndirectCommandBuilder<'a>
impl<'a> Unpin for DrawIndexedIndirectCommandBuilder<'a>
impl<'a> UnwindSafe for DrawIndexedIndirectCommandBuilder<'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