Enum vulkano::command_buffer::commands_raw::CmdCopyBufferError [] [src]

pub enum CmdCopyBufferError {
    SourceMissingTransferUsage,
    DestinationMissingTransferUsage,
    OverlappingRanges,
}

Error that can happen when creating a CmdCopyBuffer.

Variants

The source buffer is missing the transfer source usage.

The destination buffer is missing the transfer destination usage.

The source and destination are overlapping.

Trait Implementations

impl Debug for CmdCopyBufferError
[src]

Formats the value using the given formatter.

impl Copy for CmdCopyBufferError
[src]

impl Clone for CmdCopyBufferError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for CmdCopyBufferError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for CmdCopyBufferError
[src]

Formats the value using the given formatter. Read more