Enum vulkano::command_buffer::synced::SyncCommandBufferBuilderError[][src]

pub enum SyncCommandBufferBuilderError {
    Conflict {
        command1_name: &'static str,
        command1_param: Cow<'static, str>,
        command1_offset: usize,
        command2_name: &'static str,
        command2_param: Cow<'static, str>,
        command2_offset: usize,
    },
}

Error returned if the builder detects that there's an unsolvable conflict.

Variants

Unsolvable conflict.

Fields of Conflict

Trait Implementations

impl Debug for SyncCommandBufferBuilderError
[src]

Formats the value using the given formatter. Read more

impl Clone for SyncCommandBufferBuilderError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Error for SyncCommandBufferBuilderError
[src]

This method is soft-deprecated. Read more

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

impl Display for SyncCommandBufferBuilderError
[src]

Formats the value using the given formatter. Read more

impl From<SyncCommandBufferBuilderError> for BeginRenderPassError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for BlitImageError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for ClearColorImageError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for CopyBufferError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for CopyBufferImageError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for DispatchError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for DrawError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for DrawIndexedError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for DrawIndirectError
[src]

Performs the conversion.

impl From<SyncCommandBufferBuilderError> for ExecuteCommandsError
[src]

Performs the conversion.

Auto Trait Implementations