[][src]Struct melib::email::parser::ParsingError

pub struct ParsingError<I> {
    pub input: I,
    pub error: Cow<'static, str>,
}

Fields

input: Ierror: Cow<'static, str>

Implementations

impl<'i> ParsingError<&'i str>[src]

pub fn as_bytes(self) -> ParsingError<&'i [u8]>[src]

Trait Implementations

impl<'_> Debug for ParsingError<&'_ [u8]>[src]

impl<I: Eq> Eq for ParsingError<I>[src]

impl<I> From<(I, &'static str)> for ParsingError<I>[src]

impl<I> From<(I, String)> for ParsingError<I>[src]

impl<'i> From<ParsingError<&'i [u8]>> for MeliError[src]

impl<'i> From<ParsingError<&'i str>> for MeliError[src]

impl<I> ParseError<I> for ParsingError<I>[src]

impl<I: PartialEq> PartialEq<ParsingError<I>> for ParsingError<I>[src]

impl<I> StructuralEq for ParsingError<I>[src]

impl<I> StructuralPartialEq for ParsingError<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for ParsingError<I> where
    I: RefUnwindSafe

impl<I> Send for ParsingError<I> where
    I: Send

impl<I> Sync for ParsingError<I> where
    I: Sync

impl<I> Unpin for ParsingError<I> where
    I: Unpin

impl<I> UnwindSafe for ParsingError<I> where
    I: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoMeliError for I where
    I: Into<MeliError>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]