(inner: anyhow::Error)
| 41 | |
| 42 | impl From<anyhow::Error> for PostgresError { |
| 43 | fn from(inner: anyhow::Error) -> Self { |
| 44 | PostgresError::Indeterminate(inner) |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | impl From<std::io::Error> for PostgresError { |
nothing calls this directly
no test coverage detected