pub struct CommandBufferInfoBuilder { /* private fields */ }Expand description
Builder for CommandBufferInfo.
Implementations§
Source§impl CommandBufferInfoBuilder
impl CommandBufferInfoBuilder
Sourcepub fn queue_family_index(self, value: u32) -> Self
pub fn queue_family_index(self, value: u32) -> Self
Designates the queue family used by the command pool that allocates this command buffer.
Source§impl CommandBufferInfoBuilder
impl CommandBufferInfoBuilder
Sourcepub fn build(self) -> CommandBufferInfo
pub fn build(self) -> CommandBufferInfo
Builds a new CommandBufferInfo.
Trait Implementations§
Source§impl Clone for CommandBufferInfoBuilder
impl Clone for CommandBufferInfoBuilder
Source§fn clone(&self) -> CommandBufferInfoBuilder
fn clone(&self) -> CommandBufferInfoBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommandBufferInfoBuilder
impl Debug for CommandBufferInfoBuilder
Source§impl Default for CommandBufferInfoBuilder
impl Default for CommandBufferInfoBuilder
Source§impl From<CommandBufferInfoBuilder> for CommandBufferInfo
impl From<CommandBufferInfoBuilder> for CommandBufferInfo
Source§fn from(info: CommandBufferInfoBuilder) -> Self
fn from(info: CommandBufferInfoBuilder) -> Self
Converts to this type from the input type.
impl Copy for CommandBufferInfoBuilder
Auto Trait Implementations§
impl Freeze for CommandBufferInfoBuilder
impl RefUnwindSafe for CommandBufferInfoBuilder
impl Send for CommandBufferInfoBuilder
impl Sync for CommandBufferInfoBuilder
impl Unpin for CommandBufferInfoBuilder
impl UnsafeUnpin for CommandBufferInfoBuilder
impl UnwindSafe for CommandBufferInfoBuilder
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