pub trait BlockReader: Sized {
// Required methods
fn read_block<'a>(block: &mut impl Reader<'a>) -> Result<Self, Error>;
fn size_hint() -> usize;
}Required Methods§
fn read_block<'a>(block: &mut impl Reader<'a>) -> Result<Self, Error>
fn size_hint() -> usize
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.