#[repr(transparent)]pub struct PipelineExecutableInternalRepresentationKHRBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> PipelineExecutableInternalRepresentationKHRBuilder<'a>
pub fn name(
self,
name: [i8; 256]
) -> PipelineExecutableInternalRepresentationKHRBuilder<'a>
pub fn description(
self,
description: [i8; 256]
) -> PipelineExecutableInternalRepresentationKHRBuilder<'a>
pub fn is_text(
self,
is_text: bool
) -> PipelineExecutableInternalRepresentationKHRBuilder<'a>
pub fn data(
self,
data: &'a mut [u8]
) -> PipelineExecutableInternalRepresentationKHRBuilder<'a>
sourcepub fn build(self) -> PipelineExecutableInternalRepresentationKHR
pub fn build(self) -> PipelineExecutableInternalRepresentationKHR
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 PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> Deref for PipelineExecutableInternalRepresentationKHRBuilder<'a>
type Target = PipelineExecutableInternalRepresentationKHR
type Target = PipelineExecutableInternalRepresentationKHR
The resulting type after dereferencing.
sourcefn deref(
&self
) -> &<PipelineExecutableInternalRepresentationKHRBuilder<'a> as Deref>::Target
fn deref(
&self
) -> &<PipelineExecutableInternalRepresentationKHRBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> DerefMut for PipelineExecutableInternalRepresentationKHRBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PipelineExecutableInternalRepresentationKHRBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PipelineExecutableInternalRepresentationKHRBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> !Send for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> !Sync for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> Unpin for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> UnwindSafe for PipelineExecutableInternalRepresentationKHRBuilder<'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