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