[][src]Trait vulkano::command_buffer::pool::CommandPoolBuilderAlloc

pub unsafe trait CommandPoolBuilderAlloc: DeviceOwned {
    type Alloc: CommandPoolAlloc;
    pub fn inner(&self) -> &UnsafeCommandPoolAlloc;
pub fn into_alloc(self) -> Self::Alloc;
pub fn queue_family(&self) -> QueueFamily<'_>; }

A command buffer allocated from a pool and that can be recorded.

Safety

See CommandPool for information about safety.

Associated Types

type Alloc: CommandPoolAlloc[src]

Return type of into_alloc.

Loading content...

Required methods

pub fn inner(&self) -> &UnsafeCommandPoolAlloc[src]

Returns the internal object that contains the command buffer.

pub fn into_alloc(self) -> Self::Alloc[src]

Turns this builder into a command buffer that is pending execution.

pub fn queue_family(&self) -> QueueFamily<'_>[src]

Returns the queue family that the pool targets.

Loading content...

Implementors

impl CommandPoolBuilderAlloc for StandardCommandPoolBuilder[src]

Loading content...