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) -> Result
where W: Write,

Object Safety§

This trait is not object safe.

Implementors§