pub enum HmsDbError {
IO(Error),
QueryError(Error),
ConnectionError(ConnectionError),
MigrationError(String),
AliasConstraintError(String),
}
Variants§
IO(Error)
QueryError(Error)
ConnectionError(ConnectionError)
MigrationError(String)
AliasConstraintError(String)
Trait Implementations§
Source§impl Debug for HmsDbError
impl Debug for HmsDbError
Source§impl Display for HmsDbError
impl Display for HmsDbError
Source§impl Error for HmsDbError
impl Error for HmsDbError
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<ConnectionError> for HmsDbError
impl From<ConnectionError> for HmsDbError
Source§fn from(source: ConnectionError) -> Self
fn from(source: ConnectionError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for HmsDbError
impl From<Error> for HmsDbError
Auto Trait Implementations§
impl Freeze for HmsDbError
impl !RefUnwindSafe for HmsDbError
impl Send for HmsDbError
impl Sync for HmsDbError
impl Unpin for HmsDbError
impl !UnwindSafe for HmsDbError
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
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read more