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