Struct fibonacci_codec::ElementEncodeError[][src]

pub struct ElementEncodeError<T> where
    T: Debug + Send + Sync + 'static, 
{ pub index: usize, pub error: EncodeError<T>, }

Indicates that encoding an iterator failed at an element.

Fields

index: usize

The element where encoding of iterator elements failed.

error: EncodeError<T>

The error encountered when encoding an element on the iterator.

Trait Implementations

impl<T: Debug> Debug for ElementEncodeError<T> where
    T: Debug + Send + Sync + 'static, 
[src]

impl<T> Display for ElementEncodeError<T> where
    T: Debug + Send + Sync + 'static, 
[src]

impl<T> Fail for ElementEncodeError<T> where
    T: Debug + Send + Sync + 'static, 
[src]

impl<T: PartialEq> PartialEq<ElementEncodeError<T>> for ElementEncodeError<T> where
    T: Debug + Send + Sync + 'static, 
[src]

impl<T> StructuralPartialEq for ElementEncodeError<T> where
    T: Debug + Send + Sync + 'static, 
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ElementEncodeError<T> where
    T: RefUnwindSafe

impl<T> Send for ElementEncodeError<T>

impl<T> Sync for ElementEncodeError<T>

impl<T> Unpin for ElementEncodeError<T> where
    T: Unpin

impl<T> UnwindSafe for ElementEncodeError<T> where
    T: UnwindSafe

Blanket Implementations

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

impl<T> AsFail for T where
    T: Fail
[src]

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.