pub trait Json { // Required methods fn from_json(s: &str) -> Result<Self> where Self: Sized; fn to_json(&self) -> Result<String>; }