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

pub enum CommandBufferExecError {
    AccessError {
        error: AccessError,
        command_name: Cow<'static, str>,
        command_param: Cow<'static, str>,
        command_offset: usize,
    },
    OneTimeSubmitAlreadySubmitted,
    ExclusiveAlreadyInUse,
}

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

Variants

Access to a resource has been denied.

Fields of AccessError

The command buffer or one of the secondary command buffers it executes was created with the "one time submit" flag, but has already been submitted it the past.

The command buffer or one of the secondary command buffers it executes is already in use by the GPU and was not created with the "concurrent" flag.

Trait Implementations

impl Clone for CommandBufferExecError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CommandBufferExecError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for CommandBufferExecError
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for CommandBufferExecError
[src]

impl Error for CommandBufferExecError
[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 CommandBufferExecError
[src]

[src]

Formats the value using the given formatter. Read more