Struct FromStrError
struct FromStrError { ... }
An error when parsing a Mime from a string.
Implementations
impl Debug for FromStrError
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl Display for FromStrError
fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result
impl Error for FromStrError
fn description(self: &Self) -> &str
impl Freeze for FromStrError
impl RefUnwindSafe for FromStrError
impl Send for FromStrError
impl Sync for FromStrError
impl Unpin for FromStrError
impl UnwindSafe for FromStrError
impl<T> Any for FromStrError
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for FromStrError
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for FromStrError
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for FromStrError
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToString for FromStrError
fn to_string(self: &Self) -> String
impl<T, U> Into for FromStrError
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for FromStrError
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for FromStrError
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>