pub trait SerializeAsKey {
    // Required method
    fn json_write<W>(&self, writer: &mut W) -> Result
       where W: Write;
}

Required Methods§

source

fn json_write<W>(&self, writer: &mut W) -> Resultwhere W: Write,

Implementors§