(&self)
| 469 | /// Returns this `Report` as an [`Error`]. |
| 470 | #[must_use] |
| 471 | pub fn as_error(&self) -> &(impl Error + Send + Sync + 'static) |
| 472 | where |
| 473 | C: 'static, |
| 474 | { |
| 475 | crate::error::ReportError::from_ref(self) |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | impl<C: ?Sized> Report<C> { |
no outgoing calls