Struct vkxml::Struct [] [src]

pub struct Struct {
    pub name: Identifier,
    pub notation: Option<Notation>,
    pub is_return: bool,
    pub extends: Option<CommaSeparatedIdentifiers>,
    pub elements: Vec<StructElement>,
}

Definition that represents a data structure. Contains a list of members and optional validation information.

Fields

When set to true, the struct is used only as a return value by the Vulkan API.

Identifiers that represent the top-level structure that this object can be within the pNext of.

Trait Implementations

impl Debug for Struct
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Struct

impl Sync for Struct