pub trait VectorKey: Sized + Copy + Add<Output = Self> + Sub<Output = Self> + Shl<Output = Self> + Shr<Output = Self> + Eq {
    fn mul_u32(self, rhs: u32) -> Self;
}
Expand description

An integer vector that can be used as a key for Tree.

Required methods

Implementations on Foreign Types

Implementors