pub trait BucketCapacity {
// Required method
fn capacity(&self) -> u64;
// Provided method
fn capacity_pow2(&self) -> u8 { ... }
}
pub trait BucketCapacity {
// Required method
fn capacity(&self) -> u64;
// Provided method
fn capacity_pow2(&self) -> u8 { ... }
}