Struct ash::vk::CommandBufferAllocateInfoBuilder
source · pub struct CommandBufferAllocateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> CommandBufferAllocateInfoBuilder<'a>
impl<'a> CommandBufferAllocateInfoBuilder<'a>
pub fn command_pool(self, command_pool: CommandPool) -> Self
pub fn level(self, level: CommandBufferLevel) -> Self
pub fn command_buffer_count(self, command_buffer_count: u32) -> Self
sourcepub fn build(self) -> CommandBufferAllocateInfo
pub fn build(self) -> CommandBufferAllocateInfo
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 CommandBufferAllocateInfoBuilder<'a>
impl<'a> Deref for CommandBufferAllocateInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for CommandBufferAllocateInfoBuilder<'a>
impl<'a> RefUnwindSafe for CommandBufferAllocateInfoBuilder<'a>
impl<'a> !Send for CommandBufferAllocateInfoBuilder<'a>
impl<'a> !Sync for CommandBufferAllocateInfoBuilder<'a>
impl<'a> Unpin for CommandBufferAllocateInfoBuilder<'a>
impl<'a> UnwindSafe for CommandBufferAllocateInfoBuilder<'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