Enum vkxml::ReferenceType [] [src]

pub enum ReferenceType {
    Pointer,
    PointerToPointer,
    PointerToConstPointer,
}

Variants

Type is a pointer

Type is a pointer-to-a-pointer, perhaps a dynamic array of pointers

Type is a * const *. A dynamic array of const pointers to (possibly const) basetype.

Trait Implementations

impl Debug for ReferenceType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ReferenceType

impl Sync for ReferenceType