Enum vulkano::command_buffer::FillBufferError[][src]

pub enum FillBufferError {
    AutoCommandBufferBuilderContextError(AutoCommandBufferBuilderContextError),
    CheckFillBufferError(CheckFillBufferError),
}

Variants

Trait Implementations

impl Debug for FillBufferError
[src]

Formats the value using the given formatter. Read more

impl Clone for FillBufferError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for FillBufferError
[src]

This method is soft-deprecated. Read more

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

impl Display for FillBufferError
[src]

Formats the value using the given formatter. Read more

impl From<AutoCommandBufferBuilderContextError> for FillBufferError
[src]

impl From<CheckFillBufferError> for FillBufferError
[src]

Performs the conversion.

Auto Trait Implementations