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

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SCBinary for &[u8]

source§

impl SCBinary for u8

source§

impl SCBinary for u16

source§

impl SCBinary for u32

source§

impl SCBinary for u64

source§

impl SCBinary for usize

source§

impl<T: SCBinary> SCBinary for &T

Implementors§