Enum postgres::error::Error
[−]
[src]
pub enum Error {
Db(Box<DbError>),
Io(Error),
Conversion(Box<Error + Sync + Send>),
}An error encountered when communicating with the Postgres server.
Variants
Db | An error reported by the Postgres server. | |
Io | An error communicating with the Postgres server. | |
Conversion | An error converting between Postgres and Rust types. |