pub trait EncodeAsRef<'a, T>where
    T: 'a,
{ type RefType: Encode + From<&'a T>; }
Expand description

Something that can be encoded as a reference.

Required Associated Types§

The reference type that is used for encoding.

Implementors§