Enum vulkano::command_buffer::sys::Flags [] [src]

pub enum Flags {
    None,
    SimultaneousUse,
    OneTimeSubmit,
}

Flags to pass when creating a command buffer.

The safest option is SimultaneousUse, but it may be slower than the other two.

Variants

The command buffer can be used multiple times, but must not execute more than once simultaneously.

The command buffer can be executed multiple times in parallel.

The command buffer can only be submitted once. Any further submit is forbidden.

Trait Implementations

impl Debug for Flags
[src]

[src]

Formats the value using the given formatter.

impl Copy for Flags
[src]

impl Clone for Flags
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Flags
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for Flags
[src]