logo
pub enum AutoCommandBufferBuilderContextError {
    ForbiddenInsideRenderPass,
    ForbiddenOutsideRenderPass,
    IncompatibleFramebuffer,
    IncompatibleRenderPass,
    NotSupportedByQueueFamily,
    NumSubpassesMismatch {
        actual: u32,
        current: u32,
    },
    QueryIsActive,
    QueryNotActive,
    QueryNotInherited,
    WrongSubpassIndex,
    WrongSubpassType,
}

Variants

ForbiddenInsideRenderPass

Operation forbidden inside of a render pass.

ForbiddenOutsideRenderPass

Operation forbidden outside of a render pass.

IncompatibleFramebuffer

Tried to use a secondary command buffer with a specified framebuffer that is incompatible with the current framebuffer.

IncompatibleRenderPass

Tried to use a graphics pipeline or secondary command buffer whose render pass is incompatible with the current render pass.

NotSupportedByQueueFamily

The queue family doesn’t allow this operation.

NumSubpassesMismatch

Fields

actual: u32

Actual number of subpasses in the current render pass.

current: u32

Current subpass index before the failing command.

Tried to end a render pass with subpasses remaining, or tried to go to next subpass with no subpass remaining.

QueryIsActive

A query is active that conflicts with the current operation.

QueryNotActive

This query was not active.

QueryNotInherited

A query is active that is not included in the inheritance of the secondary command buffer.

WrongSubpassIndex

Tried to use a graphics pipeline or secondary command buffer whose subpass index didn’t match the current subpass index.

WrongSubpassType

Tried to execute a secondary command buffer inside a subpass that only allows inline commands, or a draw command in a subpass that only allows secondary command buffers.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.