Enum fibonacci_codec::EncodeError[][src]

pub enum EncodeError<T> where
    T: Debug + Send + Sync + 'static, 
{ ValueTooSmall(T), Underflow(T), }

Indicates that encoding a number failed.

Variants

ValueTooSmall(T)

Indicates an attempt to encode the number 0, which can’t be represented in fibonacci encoding.

Underflow(T)

A bug in fibonacci_codec in which encoding the contained number resulted in an attempt to subtract a larger fibonacci number than the number to encode.

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

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

impl<T> Send for EncodeError<T>

impl<T> Sync for EncodeError<T>

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

impl<T> UnwindSafe for EncodeError<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.