pub trait CodecInto<T>: TopEncodeMulti
where T: TopDecodeMulti,
{ }
Expand description

Signals that we can safely serialize Self in order to obtain a T on the other size.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<F, I> CodecInto<F> for I
where I: TopEncodeMulti, F: CodecFrom<I>,