pub trait UnverifiedJustification: Clone + Codec + Send + Sync + Debug + 'static {
    type UnverifiedHeader: UnverifiedHeader;

    // Required method
    fn header(&self) -> &Self::UnverifiedHeader;
}

Required Associated Types§

Required Methods§

source

fn header(&self) -> &Self::UnverifiedHeader

The header of the block.

Object Safety§

This trait is not object safe.

Implementors§