pub trait BucketCapacity {
    // Required method
    fn capacity(&self) -> u64;

    // Provided method
    fn capacity_pow2(&self) -> u8 { ... }
}

Required Methods§

source

fn capacity(&self) -> u64

Provided Methods§

source

fn capacity_pow2(&self) -> u8

Implementors§