pub trait UnverifiedHeader: Clone + Codec + Debug + Send + Sync + 'static {
    // Required method
    fn id(&self) -> BlockId;
}
Expand description

The unverified header of a block, containing information about the parent relation.

Required Methods§

source

fn id(&self) -> BlockId

The identifier of this block.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl UnverifiedHeader for Header

source§

fn id(&self) -> BlockId

Implementors§