(&self)
| 240 | C: fmt::Display + Send + Sync + 'static, |
| 241 | { |
| 242 | fn source(&self) -> Option<&(dyn core::error::Error + 'static)> { |
| 243 | let source = self.ext_source()?; |
| 244 | Some(source.inner.as_dyn_core_error()) |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | unsafe impl<C> ErrorExt for ContextError<C> |
nothing calls this directly
no test coverage detected