Struct vkxml::ExtensionConstant [] [src]

pub struct ExtensionConstant {
    pub name: Identifier,
    pub notation: Option<Notation>,
    pub text: Option<String>,
    pub enumref: Option<Identifier>,
    pub number: Option<i32>,
    pub hex: Option<String>,
    pub bitpos: Option<u32>,
    pub c_expression: Option<CExpression>,
}

Defines a constant exported by an extension. These are not enumerators.

Fields

An arbitrary string constant. The string here is not contained in quotes. So you should add your own.

Specifies a constant who's value comes from an enum or another existing constant.

Trait Implementations

impl Debug for ExtensionConstant
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations