Enum vkxml::ArrayType [] [src]

pub enum ArrayType {
    Dynamic,
    Static,
}

C array type

Variants

The variable is a runtime sized array. This will only be applied to pointer types. It spells out the difference between a pointer to a single object and a pointer as a dynamic array.

The variable is a compile-time sized array. This will be rendered out with [size] in C/C++, where size is the associated size attribute

Trait Implementations

impl Debug for ArrayType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ArrayType

impl Sync for ArrayType