Enum vulkano::command_buffer::ClearColorImageError[][src]

pub enum ClearColorImageError {
    AutoCommandBufferBuilderContextError(AutoCommandBufferBuilderContextError),
    CheckClearColorImageError(CheckClearColorImageError),
    SyncCommandBufferBuilderError(SyncCommandBufferBuilderError),
}

Variants

Trait Implementations

impl Debug for ClearColorImageError
[src]

Formats the value using the given formatter. Read more

impl Clone for ClearColorImageError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for ClearColorImageError
[src]

This method is soft-deprecated. Read more

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

impl Display for ClearColorImageError
[src]

Formats the value using the given formatter. Read more

impl From<AutoCommandBufferBuilderContextError> for ClearColorImageError
[src]

impl From<CheckClearColorImageError> for ClearColorImageError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for ClearColorImageError
[src]

Performs the conversion.

Auto Trait Implementations