[][src]Enum tendermint_light_client::builder::error::Kind

pub enum Kind {
    Io(IoError),
    HeightMismatch {
        given: Height,
        found: Height,
    },
    HashMismatch {
        given: Hash,
        found: Hash,
    },
    InvalidLightBlock,
    NoTrustedStateInStore,
    EmptyWitnessList,
}

The various error kinds raised by the builder

Variants

I/O error

HeightMismatch

Height mismatch

Fields of HeightMismatch

given: Height

Height of trusted header

found: Height

Height of fetched header

HashMismatch

Hash mismatch

Fields of HashMismatch

given: Hash

Hash of trusted header

found: Hash

hash of fetched header

InvalidLightBlock

Invalid light block

NoTrustedStateInStore

No trusted state as found in the store

EmptyWitnessList

An empty witness list was given

Implementations

impl Kind[src]

pub fn context(self, source: impl Into<BoxError>) -> Context<Self>[src]

Add additional context (i.e. include a source error and capture a backtrace). You can convert the resulting Context into an Error by calling .into().

Trait Implementations

impl Clone for Kind[src]

impl Debug for Kind[src]

impl Display for Kind[src]

impl Error for Kind[src]

impl From<IoError> for Kind[src]

impl PartialEq<Kind> for Kind[src]

impl StructuralPartialEq for Kind[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.

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