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