pub trait CountZeroes<P> {
// Required method
fn count_zeroes(&mut self, progress: P) -> Result<(u64, u64), Error>;
}Expand description
Count zeroes in something.
pub trait CountZeroes<P> {
// Required method
fn count_zeroes(&mut self, progress: P) -> Result<(u64, u64), Error>;
}Count zeroes in something.