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