pub trait MapKey { // Required method fn key(&self) -> Vec<&[u8]>; }
A trait for types which can be used as map keys.
Return the composite key.