pub trait FormatReceiver {
    // Required methods
    fn push_static_ascii(&mut self, arg: &'static [u8]);
    fn push_top_encode_bytes<T>(&mut self, item: &T)
       where T: TopEncode;
    fn push_top_encode_hex<T>(&mut self, item: &T)
       where T: TopEncode;
}

Required Methods§

source

fn push_static_ascii(&mut self, arg: &'static [u8])

source

fn push_top_encode_bytes<T>(&mut self, item: &T)
where T: TopEncode,

source

fn push_top_encode_hex<T>(&mut self, item: &T)
where T: TopEncode,

Object Safety§

This trait is not object safe.

Implementors§