pub trait EraBlockReader<BH, BB> {
// Required method
fn blocks<M: EraMeta + ?Sized>(
meta: &M,
) -> Result<impl Iterator<Item = Result<(BH, BB)>>>;
}Expand description
Reads execution (header, body) pairs out of an ERA file.
Per-format seam of the import pipeline.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".