pub trait Offsetable {
// Required method
fn get_offset(&self) -> usize;
}Expand description
A trait for types that can have an offset as a count of processed items.
pub trait Offsetable {
// Required method
fn get_offset(&self) -> usize;
}A trait for types that can have an offset as a count of processed items.