digest::core_api

Trait XofReaderCore

Source
pub trait XofReaderCore: BlockSizeUser {
    // Required method
    fn read_block(&mut self) -> Block<Self>;
}
Available on crate feature core-api only.
Expand description

Core reader trait for extendable-output function (XOF) result.

Required Methods§

Source

fn read_block(&mut self) -> Block<Self>

Read next XOF block.

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§