pub struct PipelineExecutableInternalRepresentationKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> PipelineExecutableInternalRepresentationKHRBuilder<'a>
pub fn name(self, name: [c_char; 256]) -> Self
pub fn description(self, description: [c_char; 256]) -> Self
pub fn is_text(self, is_text: bool) -> Self
pub fn data(self, data: &'a mut [u8]) -> Self
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§
source§impl<'a> Deref for PipelineExecutableInternalRepresentationKHRBuilder<'a>
impl<'a> Deref for PipelineExecutableInternalRepresentationKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for PipelineExecutableInternalRepresentationKHRBuilder<'a>
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more