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