Struct vkxml::Bitmask
[−]
[src]
pub struct Bitmask {
pub name: Identifier,
pub notation: Option<Notation>,
pub basetype: Identifier,
pub enumref: Option<Identifier>,
}Definition that specifies a bitmask, using a particular existing type. Contents are the same
as typedef. The possible bits can be defined by a specific, referenced enumeration.
Fields
name: Identifier
notation: Option<Notation>
basetype: Identifier
Specifies the original typename for the typedef. This name should reference an existing definition.
enumref: Option<Identifier>
Specifies the name of an enumerator that the bitmask gets its bits from.