public facing error type. providing basic format and display based error handling. for typed based error handling runtime type cast is needed with the help of other public error types offered by this module. # Example ```rust use xitca_postgres::error::{DriverDown, Error}; fn is_driver_down(e: Error) -> bool { // downcast error to DriverDown error type to check if client driver is gone. e.downc
| 35 | /// } |
| 36 | /// ``` |
| 37 | pub struct Error(Box<dyn error::Error + Send + Sync>); |
| 38 | |
| 39 | impl Error { |
| 40 | pub fn is_driver_down(&self) -> bool { |
no outgoing calls
no test coverage detected