Struct tendermint_testgen::light_block::TmLightBlock[][src]

pub struct TmLightBlock {
    pub signed_header: SignedHeader,
    pub validators: ValidatorSet,
    pub next_validators: ValidatorSet,
    pub provider: PeerId,
}

A light block is the core data structure used by the light client. It records everything the light client needs to know about a block. NOTE: This struct & associated impl below are a copy of light-client’s LightBlock. The copy is necessary here to avoid a circular dependency. Cf. https://github.com/informalsystems/tendermint-rs/issues/605 TODO: fix redundant code without introducing cyclic dependency.

To convert TmLightBlock to the Domain type LightBlock used in light-client crate You’ll need to implement the From trait like below:

impl From<TmLightBlock> for LightBlock {
    fn from(tm_lb: TmLightBlock) -> Self {
        Self {
            signed_header: tm_lb.signed_header,
            validators: tm_lb.validators,
            next_validators: tm_lb.next_validators,
            provider: tm_lb.provider,
        }
    }
}

Fields

signed_header: SignedHeader

Header and commit of this block

validators: ValidatorSet

Validator set at the block height

next_validators: ValidatorSet

Validator set at the next block height

provider: PeerId

The peer ID of the node that provided this block

Trait Implementations

impl Clone for TmLightBlock[src]

impl Debug for TmLightBlock[src]

impl<'de> Deserialize<'de> for TmLightBlock[src]

impl Generator<TmLightBlock> for LightBlock[src]

impl PartialEq<TmLightBlock> for TmLightBlock[src]

impl Serialize for TmLightBlock[src]

impl StructuralPartialEq for TmLightBlock[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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, 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>,