Struct asche::TransferCommandPool[][src]

pub struct TransferCommandPool {
    pub raw: CommandPool,
    // some fields omitted
}

A command pool for the transfer queue.

Fields

raw: CommandPool

The raw Vulkan command pool.

Implementations

impl TransferCommandPool[src]

pub fn create_command_buffer(
    &mut self,
    wait_semaphore: Option<CommandBufferSemaphore<'_>>,
    signal_semaphore: Option<CommandBufferSemaphore<'_>>
) -> Result<TransferCommandBuffer, AscheError>
[src]

Creates a new command buffer.

pub fn reset(&self) -> Result<(), AscheError>[src]

Resets a command pool.

Trait Implementations

impl Debug for TransferCommandPool[src]

impl Drop for TransferCommandPool[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.