Enum vk_parse::RegistryChild[][src]

pub enum RegistryChild {
    Comment(String),
    VendorIds(VendorIds),
    Platforms(Platforms),
    Tags(Tags),
    Types(Types),
    Enums(Enums),
    Commands(Commands),
    Feature(Feature),
    Extensions(Extensions),
}

An element of the Vulkan registry.

Variants

Comments are human-readable strings which contain registry meta-data.

IDs of all known Vulkan vendors.

List of supported Vulkan platforms.

Known extension tags.

Type definitions.

Unlike OpenGL, Vulkan is a strongly-typed API.

Enum definitions.

Commands are the Vulkan API's name for functions.

Feature level of the API, such as Vulkan 1.0 or 1.1

Container for all published Vulkan specification extensions.

Trait Implementations

impl Debug for RegistryChild
[src]

Formats the value using the given formatter. Read more

impl Clone for RegistryChild
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations