pub trait JsonSerializeState {
    // Required methods
    fn json_serialize(self) -> ObjectState<Arc<Vec<u8>>>;
    fn try_json_serialize(self) -> Result<ObjectState<Arc<Vec<u8>>>, Error>;
}

Required Methods§

Implementors§