pub enum KhrRegistryVariant {
Comment(Body<String>),
Types(Vec<KhrTypesVariants>),
Enums(KhrEnums),
Commands(Vec<KhrCommandsVariant>),
Feature(KhrFeature),
Extensions(Vec<KhrExtensionsVariant>),
Other,
}Variants§
Comment(Body<String>)
Types(Vec<KhrTypesVariants>)
Enums(KhrEnums)
Commands(Vec<KhrCommandsVariant>)
Feature(KhrFeature)
Extensions(Vec<KhrExtensionsVariant>)
Other
Trait Implementations§
Source§impl Debug for KhrRegistryVariant
impl Debug for KhrRegistryVariant
Source§impl<'de> Deserialize<'de> for KhrRegistryVariant
impl<'de> Deserialize<'de> for KhrRegistryVariant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for KhrRegistryVariant
impl RefUnwindSafe for KhrRegistryVariant
impl Send for KhrRegistryVariant
impl Sync for KhrRegistryVariant
impl Unpin for KhrRegistryVariant
impl UnsafeUnpin for KhrRegistryVariant
impl UnwindSafe for KhrRegistryVariant
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more