pub struct ParsedId {
pub components: Vec<String>,
pub suffix: Option<String>,
}Expand description
Parsed ID components structure
Fields§
§components: Vec<String>Array of word components
suffix: Option<String>Suffix part if detected, None otherwise
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ParsedId
impl<'de> Deserialize<'de> for ParsedId
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
impl StructuralPartialEq for ParsedId
Auto Trait Implementations§
impl Freeze for ParsedId
impl RefUnwindSafe for ParsedId
impl Send for ParsedId
impl Sync for ParsedId
impl Unpin for ParsedId
impl UnwindSafe for ParsedId
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