pub trait SCCodec {
    // Required method
    fn fmt<F: FormatByteReceiver>(&self, f: &mut F);
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: TopEncode> SCCodec for T