Enum vkxml::ReferenceType
[−]
[src]
pub enum ReferenceType {
Pointer,
PointerToPointer,
PointerToConstPointer,
}Variants
PointerType is a pointer
PointerToPointerType is a pointer-to-a-pointer, perhaps a dynamic array of pointers
PointerToConstPointerType is a * const *. A dynamic array of const pointers to (possibly const) basetype.