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
name: Identifier
notation: Option<Notation>
return_type: Field
param: Vec<Field>