pub trait CoreBlockSpec: Hashable {
    fn content(&self) -> &BlockContent;
    fn header(&self) -> &BlockHeader;

    fn nonce(&self) -> BlockNc { ... }
    fn parent(&self) -> BlockHs { ... }
    fn timestamp(&self) -> BlockTs { ... }
    fn transactions(&self) -> &Vec<SignedTransaction> { ... }
}

Required Methods

Provided Methods

Implementors