pub struct CommandBufferSubmitInfoBuilder<'a> { /* private fields */ }Expand description
Builder for CommandBufferSubmitInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> CommandBufferSubmitInfoBuilder<'a>
impl<'a> CommandBufferSubmitInfoBuilder<'a>
pub fn command_buffer(self, value: CommandBuffer) -> Self
pub fn device_mask(self, value: u32) -> Self
Sourcepub fn push_next<T: ExtendsCommandBufferSubmitInfo>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsCommandBufferSubmitInfo>( self, next: &'a mut T, ) -> Self
Prepend a struct to the pNext chain. See CommandBufferSubmitInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for CommandBufferSubmitInfoBuilder<'a>
impl<'a> Deref for CommandBufferSubmitInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for CommandBufferSubmitInfoBuilder<'a>
impl<'a> RefUnwindSafe for CommandBufferSubmitInfoBuilder<'a>
impl<'a> !Send for CommandBufferSubmitInfoBuilder<'a>
impl<'a> !Sync for CommandBufferSubmitInfoBuilder<'a>
impl<'a> Unpin for CommandBufferSubmitInfoBuilder<'a>
impl<'a> UnsafeUnpin for CommandBufferSubmitInfoBuilder<'a>
impl<'a> UnwindSafe for CommandBufferSubmitInfoBuilder<'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