pub trait KeyedVec { fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where A: Allocator, ; }
impl<A> Write for Vec<u8, A> where A: Allocator,
Trait to allow itself to be serialised and prepended by a given slice.
Return an encoding of Self prepended by given slice.
Self