(&self, f: &mut fmt::Formatter<'_>)
| 85 | |
| 86 | impl<'a> fmt::Display for StrError<'a> { |
| 87 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 88 | // Delegate to the Display impl for `&str`: |
| 89 | self.0.fmt(f) |
| 90 | } |
| 91 | } |
| 92 | |
| 93 |
nothing calls this directly
no outgoing calls
no test coverage detected