Trait GenericOwnedBlock

Source
pub trait GenericOwnedBlock {
    type Header: GenericOwnedBlockHeader;
    type Body: GenericOwnedBlockBody;
    type Block<'a>: GenericBlock<'a>
       where Self: 'a;

    // Required methods
    fn header(&self) -> Self::Header;
    fn body(&self) -> Self::Body;
    fn block(&self) -> Self::Block<'_>;
}
Expand description

Generic owned block

Required Associated Types§

Source

type Header: GenericOwnedBlockHeader

Block header type

Source

type Body: GenericOwnedBlockBody

Block body type

Source

type Block<'a>: GenericBlock<'a> where Self: 'a

Block

Required Methods§

Source

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

Block header

Source

fn body(&self) -> Self::Body

Block body

Source

fn block(&self) -> Self::Block<'_>

Get regular block out of the owned version

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§