pub trait EncodeAsRef<'a, T>where T: 'a,{ type RefType: Encode + From<&'a T>; }
Something that can be encoded as a reference.
The reference type that is used for encoding.