pub enum SqlantError {
    Postgres(Error),
    TlsConnector(Error),
    Template(Error),
    PsqlErdLoader(String),
    Generator(String),
}Variants§
Trait Implementations§
Source§impl Debug for SqlantError
 
impl Debug for SqlantError
Source§impl Display for SqlantError
 
impl Display for SqlantError
Source§impl Error for SqlantError
 
impl Error for SqlantError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for SqlantError
 
impl From<Error> for SqlantError
Source§impl From<Error> for SqlantError
 
impl From<Error> for SqlantError
Auto Trait Implementations§
impl Freeze for SqlantError
impl !RefUnwindSafe for SqlantError
impl Send for SqlantError
impl Sync for SqlantError
impl Unpin for SqlantError
impl !UnwindSafe for SqlantError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more