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, ) -> CommandBufferInheritanceInfoBuilder<'a>
pub fn subpass(self, value: u32) -> CommandBufferInheritanceInfoBuilder<'a>
pub fn framebuffer( self, value: Framebuffer, ) -> CommandBufferInheritanceInfoBuilder<'a>
pub fn occlusion_query_enable( self, value: bool, ) -> CommandBufferInheritanceInfoBuilder<'a>
pub fn query_flags( self, value: QueryControlFlagBits, ) -> CommandBufferInheritanceInfoBuilder<'a>
pub fn pipeline_statistics( self, value: QueryPipelineStatisticFlagBits, ) -> CommandBufferInheritanceInfoBuilder<'a>
Sourcepub fn push_next<T>(
self,
next: &'a mut T,
) -> CommandBufferInheritanceInfoBuilder<'a>where
T: ExtendsCommandBufferInheritanceInfo,
pub fn push_next<T>(
self,
next: &'a mut T,
) -> CommandBufferInheritanceInfoBuilder<'a>where
T: ExtendsCommandBufferInheritanceInfo,
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>
Source§type Target = CommandBufferInheritanceInfo
type Target = CommandBufferInheritanceInfo
The resulting type after dereferencing.
Source§impl<'a> DerefMut for CommandBufferInheritanceInfoBuilder<'a>
impl<'a> DerefMut 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