(&self, fmt: &mut Formatter<'_>)
| 301 | |
| 302 | impl Display for ContextC { |
| 303 | fn fmt(&self, fmt: &mut Formatter<'_>) -> core::fmt::Result { |
| 304 | fmt.write_str("A multiline\ncontext that might have\na bit more info") |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | impl Error for ContextC {} |