Enum vk_parse::RegistryChild [−][src]
#[non_exhaustive]
pub enum RegistryChild {
Comment(String),
VendorIds(VendorIds),
Platforms(Platforms),
Tags(Tags),
Types(Types),
Enums(Enums),
Commands(Commands),
Feature(Feature),
Extensions(Extensions),
Formats(Formats),
SpirvExtensions(SpirvExtensions),
SpirvCapabilities(SpirvCapabilities),
}Expand description
An element of the Vulkan registry.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Comment(String)
Tuple Fields
0: StringComments are human-readable strings which contain registry meta-data.
VendorIds(VendorIds)
Tuple Fields
0: VendorIdsIDs of all known Vulkan vendors.
Platforms(Platforms)
Tuple Fields
0: PlatformsList of supported Vulkan platforms.
Tags(Tags)
Tuple Fields
0: TagsKnown extension tags.
Types(Types)
Tuple Fields
0: TypesType definitions.
Unlike OpenGL, Vulkan is a strongly-typed API.
Enums(Enums)
Tuple Fields
0: EnumsEnum definitions.
Commands(Commands)
Tuple Fields
0: CommandsCommands are the Vulkan API’s name for functions.
Feature(Feature)
Tuple Fields
0: FeatureFeature level of the API, such as Vulkan 1.0 or 1.1
Extensions(Extensions)
Tuple Fields
0: ExtensionsContainer for all published Vulkan specification extensions.
Formats(Formats)
Tuple Fields
0: FormatsSpirvExtensions(SpirvExtensions)
Tuple Fields
SpirvCapabilities(SpirvCapabilities)
Tuple Fields
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for RegistryChild
impl Send for RegistryChild
impl Sync for RegistryChild
impl Unpin for RegistryChild
impl UnwindSafe for RegistryChild
Blanket Implementations
Mutably borrows from an owned value. Read more
