Enum vulkano::command_buffer::CommandAddError [] [src]

pub enum CommandAddError {
    ForbiddenInsideRenderPass,
    ForbiddenOutsideRenderPass,
    ForbiddenInSecondaryCommandBuffer,
    GraphicsOperationsNotSupported,
    ComputeOperationsNotSupported,
    QueueFamilyMismatch,
}

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

Variants

This command is forbidden when inside a render pass.

This command is forbidden when outside of a render pass.

This command is forbidden in a secondary command buffer.

The queue family doesn't support graphics operations.

The queue family doesn't support compute operations.

Trying to execute a secondary command buffer in a primary command buffer of a different queue family.

Trait Implementations

impl Debug for CommandAddError
[src]

Formats the value using the given formatter.

impl Copy for CommandAddError
[src]

impl Clone for CommandAddError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for CommandAddError
[src]

A short description of the error. Read more

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

impl Display for CommandAddError
[src]

Formats the value using the given formatter. Read more