pub trait FullEncode: Encode + EncodeLike { }
Expand description

Trait that bound EncodeLike along with Encode. Usefull for generic being used in function with EncodeLike parameters.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<S> FullEncode for S
where S: Encode + EncodeLike,