pub trait BlockWrite<C = ()> {
// Required method
fn write_block<W: Write + Seek>(
&self,
writer: W,
blocks: &mut Blocks,
context: &mut C,
) -> Result<u32, Error>;
}Expand description
Read values into BOM blocks.
Required Methods§
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.