Enum vk_parse::FormatChild [−][src]
#[non_exhaustive]
pub enum FormatChild {
Component {
name: String,
bits: String,
numericFormat: String,
planeIndex: Option<u8>,
},
Plane {
index: u8,
widthDivisor: u8,
heightDivisor: u8,
compatible: String,
},
SpirvImageFormat {
name: String,
},
}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.
Component
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
name: Stringbits: StringnumericFormat: StringPlane
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
index: u8widthDivisor: u8heightDivisor: u8compatible: StringSpirvImageFormat
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
name: StringTrait 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 FormatChild
impl Send for FormatChild
impl Sync for FormatChild
impl Unpin for FormatChild
impl UnwindSafe for FormatChild
Blanket Implementations
Mutably borrows from an owned value. Read more
