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

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Merge this companion with the another, default one. The options present in this object will override those in the default one. Read more

Generate the complex object from this companion object.

Generate and serialize the complex object

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.