pub struct EmailParseError(/* private fields */);Trait Implementations§
Source§impl Debug for EmailParseError
impl Debug for EmailParseError
Source§impl Display for EmailParseError
impl Display for EmailParseError
Source§impl Error for EmailParseError
impl Error for EmailParseError
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<EmailParseError> for ParseError
impl From<EmailParseError> for ParseError
Source§fn from(source: EmailParseError) -> Self
fn from(source: EmailParseError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for EmailParseError
impl From<ParseError> for EmailParseError
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EmailParseError
impl RefUnwindSafe for EmailParseError
impl Send for EmailParseError
impl Sync for EmailParseError
impl Unpin for EmailParseError
impl UnsafeUnpin for EmailParseError
impl UnwindSafe for EmailParseError
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