Enum vulkano::command_buffer::validity::CheckCopyBufferError[][src]

pub enum CheckCopyBufferError {
    SourceMissingTransferUsage,
    DestinationMissingTransferUsage,
    OverlappingRanges,
}

Error that can happen from check_copy_buffer.

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 CheckCopyBufferError
[src]

Formats the value using the given formatter. Read more

impl Copy for CheckCopyBufferError
[src]

impl Clone for CheckCopyBufferError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for CheckCopyBufferError
[src]

This method is soft-deprecated. Read more

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

impl Display for CheckCopyBufferError
[src]

Formats the value using the given formatter. Read more

impl From<CheckCopyBufferError> for CopyBufferError
[src]

Performs the conversion.

Auto Trait Implementations