pub enum ParseStructTagError {
FromStr(Box<dyn StdError + Send + Sync + 'static>),
StructTag(StructTagError),
}Variants§
Trait Implementations§
Source§impl Debug for ParseStructTagError
impl Debug for ParseStructTagError
Source§impl Display for ParseStructTagError
impl Display for ParseStructTagError
Source§impl Error for ParseStructTagError
impl Error for ParseStructTagError
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<StructTagError> for ParseStructTagError
impl From<StructTagError> for ParseStructTagError
Source§fn from(source: StructTagError) -> Self
fn from(source: StructTagError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseStructTagError
impl !RefUnwindSafe for ParseStructTagError
impl Send for ParseStructTagError
impl Sync for ParseStructTagError
impl Unpin for ParseStructTagError
impl !UnwindSafe for ParseStructTagError
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