Struct vkxml::FunctionPointer [] [src]

pub struct FunctionPointer {
    pub name: Identifier,
    pub notation: Option<Notation>,
    pub return_type: Field,
    pub param: Vec<Field>,
}

Defines a function pointer.

If it has no function parameters, then it should be rendered out for C/C++ with just "void" in the parameter list. And just "void" should not be in a <type> element, as it does not qualify as a parameter type.

Fields

Trait Implementations

impl Debug for FunctionPointer
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations