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

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

Variants

Trait Implementations

impl Debug for FillBufferError
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for FillBufferError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Error for FillBufferError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for FillBufferError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<AutoCommandBufferBuilderContextError> for FillBufferError
[src]

[src]

Performs the conversion.

impl From<CheckFillBufferError> for FillBufferError
[src]

[src]

Performs the conversion.

Auto Trait Implementations