pub trait TryToString { type Err; // Required method fn try_to_string(&self) -> Result<String, Self::Err>; }