Enum vulkano::command_buffer::commands_extra::CmdDispatchError [] [src]

pub enum CmdDispatchError {
    DispatchRawError(CmdDispatchRawError),
    BindDescriptorSetsError(CmdBindDescriptorSetsError),
    PushConstantsError(CmdPushConstantsError),
}

Error that can happen when creating a CmdDispatch.

Variants

The dispatch dimensions are larger than the hardware limits.

Error while binding descriptor sets.

Error while setting push constants.

Trait Implementations

impl Debug for CmdDispatchError
[src]

Formats the value using the given formatter.

impl Copy for CmdDispatchError
[src]

impl Clone for CmdDispatchError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<CmdDispatchRawError> for CmdDispatchError
[src]

Performs the conversion.

impl From<CmdBindDescriptorSetsError> for CmdDispatchError
[src]

Performs the conversion.

impl From<CmdPushConstantsError> for CmdDispatchError
[src]

Performs the conversion.

impl Error for CmdDispatchError
[src]

A short description of the error. Read more

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

impl Display for CmdDispatchError
[src]

Formats the value using the given formatter. Read more