Enum vulkano::command_buffer::StateCacherOutcome[][src]

pub enum StateCacherOutcome {
    NeedChange,
    AlreadyOk,
}

Outcome of an operation.

Variants

The caller needs to perform the state change in the actual command buffer builder.

The state change is not necessary.

Trait Implementations

impl Debug for StateCacherOutcome
[src]

Formats the value using the given formatter. Read more

impl Copy for StateCacherOutcome
[src]

impl Clone for StateCacherOutcome
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StateCacherOutcome
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for StateCacherOutcome
[src]

Auto Trait Implementations