#[repr(transparent)]pub struct CommandBufferAllocateInfoBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> CommandBufferAllocateInfoBuilder<'a>
impl<'a> CommandBufferAllocateInfoBuilder<'a>
pub fn command_pool(
self,
command_pool: CommandPool
) -> CommandBufferAllocateInfoBuilder<'a>
pub fn level(
self,
level: CommandBufferLevel
) -> CommandBufferAllocateInfoBuilder<'a>
pub fn command_buffer_count(
self,
command_buffer_count: u32
) -> CommandBufferAllocateInfoBuilder<'a>
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
sourceimpl<'a> Deref for CommandBufferAllocateInfoBuilder<'a>
impl<'a> Deref for CommandBufferAllocateInfoBuilder<'a>
type Target = CommandBufferAllocateInfo
type Target = CommandBufferAllocateInfo
The resulting type after dereferencing.
sourcefn deref(&self) -> &<CommandBufferAllocateInfoBuilder<'a> as Deref>::Target
fn deref(&self) -> &<CommandBufferAllocateInfoBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for CommandBufferAllocateInfoBuilder<'a>
impl<'a> DerefMut for CommandBufferAllocateInfoBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <CommandBufferAllocateInfoBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <CommandBufferAllocateInfoBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more