usecrate::{CodecFrom, TopDecodeMulti, TopEncodeMulti};/// Signals that we can safely serialize `Self` in order to obtain a `T` on the other size.
pubtraitCodecInto<T>: TopEncodeMulti
where
T: TopDecodeMulti,
{}impl<F, I>CodecInto<F>forIwhere
I: TopEncodeMulti,
F:CodecFrom<I>,
{}