Enum vk_parse::Command[][src]

pub enum Command {
    Alias {
        name: String,
        alias: String,
    },
    Definition(CommandDefinition),
}

A command is just a Vulkan function.

Variants

Indicates this function is an alias for another one.

Fields of Alias

Defines a new Vulkan function.

Trait Implementations

impl From<Command> for Option<Command>
[src]

Performs the conversion.

impl Debug for Command
[src]

Formats the value using the given formatter. Read more

impl Clone for Command
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Command

impl Sync for Command