use super::*; #[derive(Debug)] pub struct JsonFormatter; impl Format for JsonFormatter { fn encode(cfg: &Config, to: W, obj: &Object) -> Result { todo!() } fn decode(cfg: &Config, from: R) -> Result { todo!() } }