Trait simple_kbuckets::Key [] [src]

pub trait Key: Debug + Clone + Ord + PartialEq {
    fn bitxor(&self, other: &Self) -> Self;
    fn bits(&self) -> usize;
}

Trait that table keys must implement.

Required Methods

Implementors