Enum vulkano::command_buffer::DrawError[][src]

pub enum DrawError {
    AutoCommandBufferBuilderContextError(AutoCommandBufferBuilderContextError),
    CheckDynamicStateValidityError(CheckDynamicStateValidityError),
    CheckPushConstantsValidityError(CheckPushConstantsValidityError),
    CheckDescriptorSetsValidityError(CheckDescriptorSetsValidityError),
    CheckVertexBufferError(CheckVertexBufferError),
    SyncCommandBufferBuilderError(SyncCommandBufferBuilderError),
}

Variants

Trait Implementations

impl Debug for DrawError
[src]

Formats the value using the given formatter. Read more

impl Clone for DrawError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for DrawError
[src]

This method is soft-deprecated. Read more

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

impl Display for DrawError
[src]

Formats the value using the given formatter. Read more

impl From<AutoCommandBufferBuilderContextError> for DrawError
[src]

Performs the conversion.

impl From<CheckDynamicStateValidityError> for DrawError
[src]

Performs the conversion.

impl From<CheckPushConstantsValidityError> for DrawError
[src]

Performs the conversion.

impl From<CheckDescriptorSetsValidityError> for DrawError
[src]

Performs the conversion.

impl From<CheckVertexBufferError> for DrawError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for DrawError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for DrawError

impl Sync for DrawError