(
self,
)
| 1257 | } |
| 1258 | |
| 1259 | fn ext_into_boxed_dyn_core_error( |
| 1260 | self, |
| 1261 | ) -> Result<Box<dyn core::error::Error + Send + Sync + 'static>, OutOfMemory> { |
| 1262 | let boxed = try_new_uninit_box()?; |
| 1263 | Ok(Box::write(boxed, self.0) as _) |
| 1264 | } |
| 1265 | |
| 1266 | fn ext_source(&self) -> Option<&Error> { |
| 1267 | None |
no test coverage detected