Struct lightning_block_sync::BlockHeaderData[][src]

pub struct BlockHeaderData {
    pub header: BlockHeader,
    pub height: u32,
    pub chainwork: Uint256,
}

A block header and some associated data. This information should be available from most block sources (and, notably, is available in Bitcoin Core’s RPC and REST interfaces).

Fields

header: BlockHeader

The block header itself.

height: u32

The block height where the genesis block has height 0.

chainwork: Uint256

The total chain work in expected number of double-SHA256 hashes required to build a chain of equivalent weight.

Trait Implementations

impl Clone for BlockHeaderData[src]

impl Copy for BlockHeaderData[src]

impl Debug for BlockHeaderData[src]

impl PartialEq<BlockHeaderData> for BlockHeaderData[src]

impl StructuralPartialEq for BlockHeaderData[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.