Struct vk_parse::CommandParam[][src]

pub struct CommandParam {
    pub len: Option<String>,
    pub altlen: Option<String>,
    pub externsync: Option<String>,
    pub optional: Option<String>,
    pub noautovalidity: Option<String>,
    pub definition: NameWithType,
}

Parameter for this Vulkan function.

Fields

The expression which indicates the length of this array.

Alternate description of the length of this parameter.

Whether this parameter must be externally synchronised by the app.

Whether this parameter must have a non-null value.

Disables automatic validity language being generated for this item.

The definition of this parameter.

Trait Implementations

impl Debug for CommandParam
[src]

Formats the value using the given formatter. Read more

impl Clone for CommandParam
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations