pub unsafe trait CommandPoolAlloc: DeviceOwned {
    fn inner(&self) -> &UnsafeCommandPoolAlloc;
    fn queue_family(&self) -> QueueFamily<'_>;
}
Expand description

A command buffer allocated from a pool that has finished being recorded.

Safety

See CommandPool for information about safety.

Required Methods

Returns the internal object that contains the command buffer.

Returns the queue family that the pool targets.

Implementors