(&self, f: &mut fmt::Formatter)
| 7 | |
| 8 | impl fmt::Display for MyString { |
| 9 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 10 | write!(f, "{}", self.0) |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | impl ops::Add<String> for MyString { |
nothing calls this directly
no outgoing calls
no test coverage detected