pub trait Map: Clone { // Required method fn map<V: Into<Vec<u8>>>(v: V) -> Vec<u8>; }
A trait describing a conversion from an arbitrary type to a fixed size byte vector.