(report: Report<C>)
| 917 | |
| 918 | impl<C: 'static> From<Report<C>> for Box<dyn Error> { |
| 919 | fn from(report: Report<C>) -> Self { |
| 920 | Box::new(report.into_error()) |
| 921 | } |
| 922 | } |
| 923 | |
| 924 | impl<C: 'static> From<Report<C>> for Box<dyn Error + Send> { |
nothing calls this directly
no test coverage detected