[−][src]Struct mail_internals::error::EncodingError
A general error appearing when encoding failed in some way.
This error consists of an EncodingErrorKind and a bit
of contextual information including: The place the error
happened in (Header { name },Body), a string representing
the context when it happens (e.g. the word which could not be encoded),
and the mail type.
Methods
impl EncodingError[src]
pub fn kind(&self) -> EncodingErrorKind[src]
Return the error kind.
pub fn mail_type(&self) -> Option<MailType>[src]
Return the mail type used when the error appeared.
pub fn str_context(&self) -> Option<&str>[src]
Returns the str_context associated with the error.
pub fn set_str_context<I>(&mut self, ctx: I) where
I: Into<String>, [src]
I: Into<String>,
Sets the str context.
pub fn with_str_context<I>(self, ctx: I) -> Self where
I: Into<String>, [src]
I: Into<String>,
Returns a version of self which has a str context like the given one.
pub fn with_place_or_else<F>(self, func: F) -> Self where
F: FnOnce() -> Option<Place>, [src]
F: FnOnce() -> Option<Place>,
Adds a place (context) to self if there isn't one and returns self.
pub fn with_mail_type_or_else<F>(self, func: F) -> Self where
F: FnOnce() -> Option<MailType>, [src]
F: FnOnce() -> Option<MailType>,
Adds a mail type (context) to self if there isn't one and returns self.
Trait Implementations
impl Debug for EncodingError[src]
impl Display for EncodingError[src]
impl Fail for EncodingError[src]
fn cause(&self) -> Option<&dyn Fail>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]
fn name(&self) -> Option<&str>[src]
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static, [src]
D: Display + Send + Sync + 'static,
fn compat(self) -> Compat<Self>[src]
impl From<(Context<EncodingErrorKind>, MailType)> for EncodingError[src]
impl From<(EncodingErrorKind, MailType)> for EncodingError[src]
impl From<Context<EncodingErrorKind>> for EncodingError[src]
fn from(inner: Context<EncodingErrorKind>) -> Self[src]
impl From<EncodingErrorKind> for EncodingError[src]
fn from(ctx: EncodingErrorKind) -> Self[src]
Auto Trait Implementations
impl !RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl !UnwindSafe for EncodingError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> AsFail for T where
T: Fail, [src]
T: Fail,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<E> Fail for E where
E: 'static + Error + Send + Sync, [src]
E: 'static + Error + Send + Sync,
fn name(&self) -> Option<&str>[src]
fn cause(&self) -> Option<&(dyn Fail + 'static)>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static, [src]
D: Display + Send + Sync + 'static,
fn compat(self) -> Compat<Self>[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,