(e: std::io::Error)
| 102 | // Automatic conversions from common error types |
| 103 | impl From<std::io::Error> for StorageDriverError { |
| 104 | fn from(e: std::io::Error) -> Self { |
| 105 | StorageDriverError::IoError(e) |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | impl From<bincode::Error> for StorageDriverError { |
nothing calls this directly
no test coverage detected