(e: std::io::Error)
| 491 | |
| 492 | impl<WE> From<std::io::Error> for FileOutputError<WE> { |
| 493 | fn from(e: std::io::Error) -> Self { |
| 494 | Self::Io(e) |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | impl<WE> From<crate::pristine::PristineError> for FileOutputError<WE> { |
nothing calls this directly
no test coverage detected