pub trait Bucket {
    type Item;

    fn new_bucket() -> Self;
    fn len_bucket(&self) -> usize;
    fn is_empty_bucket(&self) -> bool;
    fn clear(&mut self);
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§