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