pub enum TagFromStringError {
MustStartAlphabetic(char),
MustEndAlphanumeric(char),
InvalidCharacter(char),
LimitExceeded(usize),
}Variants§
Trait Implementations§
Source§impl Debug for TagFromStringError
impl Debug for TagFromStringError
Source§impl Display for TagFromStringError
impl Display for TagFromStringError
Source§impl Error for TagFromStringError
impl Error for TagFromStringError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<TagFromStringError> for TagUnionFromStringError
impl From<TagFromStringError> for TagUnionFromStringError
Source§fn from(value: TagFromStringError) -> Self
fn from(value: TagFromStringError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TagFromStringError
impl PartialEq for TagFromStringError
impl Eq for TagFromStringError
impl StructuralPartialEq for TagFromStringError
Auto Trait Implementations§
impl Freeze for TagFromStringError
impl RefUnwindSafe for TagFromStringError
impl Send for TagFromStringError
impl Sync for TagFromStringError
impl Unpin for TagFromStringError
impl UnwindSafe for TagFromStringError
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