pub trait UpdateCore: BlockSizeUser {
    fn update_blocks(&mut self, blocks: &[Block<Self>]);
}
Available on crate feature core-api only.
Expand description

Types which consume data in blocks.

Required Methods

Update state using the provided data blocks.

Implementors