Enum rss2email_lib::email::error::EmailError
source · pub enum EmailError {
Config(String),
Request(Box<Error>),
Io(String),
Other(String),
}
Expand description
Represents all things that could go wrong while trying to send an email.
Variants§
Trait Implementations§
source§impl Debug for EmailError
impl Debug for EmailError
source§impl Display for EmailError
impl Display for EmailError
source§impl From<Error> for EmailError
impl From<Error> for EmailError
Auto Trait Implementations§
impl !RefUnwindSafe for EmailError
impl Send for EmailError
impl Sync for EmailError
impl Unpin for EmailError
impl !UnwindSafe for EmailError
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