pub struct CommandBufferInheritanceInfoBuilder<'a> { /* private fields */ }Expand description
Builder for CommandBufferInheritanceInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> CommandBufferInheritanceInfoBuilder<'a>
impl<'a> CommandBufferInheritanceInfoBuilder<'a>
pub fn render_pass(self, value: RenderPass) -> Self
pub fn subpass(self, value: u32) -> Self
pub fn framebuffer(self, value: Framebuffer) -> Self
pub fn occlusion_query_enable(self, value: bool) -> Self
pub fn query_flags(self, value: QueryControlFlags) -> Self
pub fn pipeline_statistics(self, value: QueryPipelineStatisticFlags) -> Self
Sourcepub fn push_next<T: ExtendsCommandBufferInheritanceInfo>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsCommandBufferInheritanceInfo>( self, next: &'a mut T, ) -> Self
Prepend a struct to the pNext chain. See CommandBufferInheritanceInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> Deref for CommandBufferInheritanceInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> RefUnwindSafe for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> !Send for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> !Sync for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> Unpin for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> UnsafeUnpin for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> UnwindSafe for CommandBufferInheritanceInfoBuilder<'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