Struct std::collections::hash_map::raw_table::GapThenFull [] [src]

pub struct GapThenFull<K, V, M> {
    gap: EmptyBucket<K, V, ()>,
    full: FullBucket<K, V, M>,
}

Fields

gap
full

Methods

impl<K, V, M: Deref<Target=RawTable<K, V>>> GapThenFull<K, V, M>

fn full(&self) -> &FullBucket<K, V, M>

fn shift(self) -> Option<GapThenFull<K, V, M>>