pub enum SubRegistryType {
ValueNameDescRegistry,
ReasonCodeNestedRegistry,
}Expand description
There could be different types of subregistries that require a different parsing and/or code generator.
Variants§
ValueNameDescRegistry
Simple sub-registries with Value and (Name and/or Description) plus optional comment, parameters, xrefs, such as: flowEndReason (Value 136)
ReasonCodeNestedRegistry
Sub-registries with nested registries for reason code, such as: Forwarding Status (Value 89)
Trait Implementations§
Source§impl Clone for SubRegistryType
impl Clone for SubRegistryType
Source§fn clone(&self) -> SubRegistryType
fn clone(&self) -> SubRegistryType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SubRegistryType
impl Debug for SubRegistryType
Source§impl<'de> Deserialize<'de> for SubRegistryType
impl<'de> Deserialize<'de> for SubRegistryType
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
Source§impl PartialEq for SubRegistryType
impl PartialEq for SubRegistryType
Source§impl Serialize for SubRegistryType
impl Serialize for SubRegistryType
impl Copy for SubRegistryType
impl Eq for SubRegistryType
impl StructuralPartialEq for SubRegistryType
Auto Trait Implementations§
impl Freeze for SubRegistryType
impl RefUnwindSafe for SubRegistryType
impl Send for SubRegistryType
impl Sync for SubRegistryType
impl Unpin for SubRegistryType
impl UnwindSafe for SubRegistryType
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