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§
Sourcefn read_block(&mut self) -> Block<Self>
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.