Struct ash::vk::PipelineExecutablePropertiesKHRBuilder
source · pub struct PipelineExecutablePropertiesKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PipelineExecutablePropertiesKHRBuilder<'a>
impl<'a> PipelineExecutablePropertiesKHRBuilder<'a>
pub fn stages(self, stages: ShaderStageFlags) -> Self
pub fn name(self, name: [c_char; 256]) -> Self
pub fn description(self, description: [c_char; 256]) -> Self
pub fn subgroup_size(self, subgroup_size: u32) -> Self
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§
source§impl<'a> Deref for PipelineExecutablePropertiesKHRBuilder<'a>
impl<'a> Deref for PipelineExecutablePropertiesKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for PipelineExecutablePropertiesKHRBuilder<'a>
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§
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