Enum vulkano::command_buffer::CommandBufferExecError [] [src]

pub enum CommandBufferExecError {
    AccessError(AccessError),
}

Error that can happen when attempting to execute a command buffer.

Variants

Access to a resource has been denied.

Trait Implementations

impl Clone for CommandBufferExecError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CommandBufferExecError
[src]

Formats the value using the given formatter.

impl PartialEq for CommandBufferExecError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CommandBufferExecError
[src]

impl Error for CommandBufferExecError
[src]

A short description of the error. Read more

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

impl Display for CommandBufferExecError
[src]

Formats the value using the given formatter. Read more

impl From<AccessError> for CommandBufferExecError
[src]

Performs the conversion.