[][src]Struct bigbit::linkedbytes::InvalidLBSequence

pub struct InvalidLBSequence;

Marker error type representing that the decoder has encountered an invalid Linked Bytes sequence, created by the TryFrom implementation of LBNum.

The only reason for this to ever happen is incorrect state of the link bit in one of the bytes: all the bytes except for the last one have to be linked (most significant bit set), and the last one has to be an endpoint (most significant bit clear).

Trait Implementations

impl Clone for InvalidLBSequence[src]

impl Copy for InvalidLBSequence[src]

impl Debug for InvalidLBSequence[src]

impl Default for InvalidLBSequence[src]

impl Eq for InvalidLBSequence[src]

impl PartialEq<InvalidLBSequence> for InvalidLBSequence[src]

impl StructuralEq for InvalidLBSequence[src]

impl StructuralPartialEq for InvalidLBSequence[src]

Auto Trait Implementations

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<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.