Enum vulkano::command_buffer::CommandBufferBuilderError [] [src]

pub enum CommandBufferBuilderError<E> {
    CommandBuildError(E),
    CommandAddError(CommandAddError),
}

Error that can happen when adding a command to a command buffer builder.

Variants

Error while creating the command.

Error while adding the command to the builder.

Trait Implementations

impl<E: Debug> Debug for CommandBufferBuilderError<E>
[src]

Formats the value using the given formatter.

impl<E: Copy> Copy for CommandBufferBuilderError<E>
[src]

impl<E: Clone> Clone for CommandBufferBuilderError<E>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<E> From<CommandAddError> for CommandBufferBuilderError<E>
[src]

Performs the conversion.

impl<E> Error for CommandBufferBuilderError<E> where
    E: Error
[src]

A short description of the error. Read more

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

impl<E> Display for CommandBufferBuilderError<E> where
    E: Error
[src]

Formats the value using the given formatter. Read more