pub trait Code { // Required methods fn path(&self) -> &str; fn into_string(self) -> Result<String>; }