Struct ash::vk::PipelineExecutableInfoKHRBuilder
source · pub struct PipelineExecutableInfoKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PipelineExecutableInfoKHRBuilder<'a>
impl<'a> PipelineExecutableInfoKHRBuilder<'a>
pub fn pipeline(self, pipeline: Pipeline) -> Self
pub fn executable_index(self, executable_index: u32) -> Self
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§
source§impl<'a> Deref for PipelineExecutableInfoKHRBuilder<'a>
impl<'a> Deref for PipelineExecutableInfoKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for PipelineExecutableInfoKHRBuilder<'a>
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§
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