pub trait SubAdd<Rhs = Self> {
type Output;
// Required method
fn sub(
self,
rhs: Rhs,
mutation_count: usize,
coverage: &AtomicUsize,
mask: usize,
) -> Self::Output;
}pub trait SubAdd<Rhs = Self> {
type Output;
// Required method
fn sub(
self,
rhs: Rhs,
mutation_count: usize,
coverage: &AtomicUsize,
mask: usize,
) -> Self::Output;
}