pub enum AbbreviationType {
AA,
UA,
}
Expand description
Which type of abbreviation (AA) record exists, either AA or UA (user-defined)
Variants§
Trait Implementations§
Source§impl Debug for AbbreviationType
impl Debug for AbbreviationType
Source§impl<'de> Deserialize<'de> for AbbreviationType
impl<'de> Deserialize<'de> for AbbreviationType
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 FromStr for AbbreviationType
impl FromStr for AbbreviationType
Source§fn from_str(s: &str) -> Result<AbbreviationType, ValueError>
fn from_str(s: &str) -> Result<AbbreviationType, ValueError>
Parses an Abbreviation Type from a string reference.
Source§type Err = ValueError
type Err = ValueError
The associated error which can be returned from parsing.
Source§impl PartialEq for AbbreviationType
impl PartialEq for AbbreviationType
Source§impl Serialize for AbbreviationType
impl Serialize for AbbreviationType
impl Eq for AbbreviationType
impl StructuralPartialEq for AbbreviationType
Auto Trait Implementations§
impl Freeze for AbbreviationType
impl RefUnwindSafe for AbbreviationType
impl Send for AbbreviationType
impl Sync for AbbreviationType
impl Unpin for AbbreviationType
impl UnwindSafe for AbbreviationType
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