pub enum DbErr {
Show 16 variants
ConnectionAcquire(ConnAcquireErr),
TryIntoErr {
from: &'static str,
into: &'static str,
source: Box<dyn Error + Send + Sync>,
},
Conn(RuntimeErr),
Exec(RuntimeErr),
Query(RuntimeErr),
ConvertFromU64(&'static str),
UnpackInsertId,
UpdateGetPrimaryKey,
RecordNotFound(String),
AttrNotSet(String),
Custom(String),
Type(String),
Json(String),
Migration(String),
RecordNotInserted,
RecordNotUpdated,
}
Expand description
An error from unsuccessful database operations
Variantsยง
ConnectionAcquire(ConnAcquireErr)
This error can happen when the connection pool is fully-utilized
TryIntoErr
Runtime type conversion error
Fields
Conn(RuntimeErr)
There was a problem with the database connection
Exec(RuntimeErr)
An operation did not execute successfully
Query(RuntimeErr)
An error occurred while performing a query
ConvertFromU64(&'static str)
Type error: the specified type cannot be converted from u64. This is not a runtime error.
UnpackInsertId
After an insert statement it was impossible to retrieve the last_insert_id
UpdateGetPrimaryKey
When updating, a model should know its primary key to check if the record has been correctly updated, otherwise this error will occur
RecordNotFound(String)
The record was not found in the database
AttrNotSet(String)
Thrown by TryFrom<ActiveModel>
, which assumes all attributes are set/unchanged
Custom(String)
A custom error
Type(String)
Error occurred while parsing value as target type
Json(String)
Error occurred while parsing json value as target type
Migration(String)
A migration error
RecordNotInserted
None of the records are inserted, that probably means all of them conflict with existing records in the table
RecordNotUpdated
None of the records are updated, that means a WHERE condition has no matches. May be the table is empty or the record does not exist
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Error for DbErr
impl Error for DbErr
Sourceยงfn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 ยท Sourceยงfn description(&self) -> &str
fn description(&self) -> &str
Sourceยงimpl From<DbErr> for TryGetError
impl From<DbErr> for TryGetError
Sourceยงfn from(e: DbErr) -> TryGetError
fn from(e: DbErr) -> TryGetError
Sourceยงimpl From<TryGetError> for DbErr
impl From<TryGetError> for DbErr
Sourceยงfn from(e: TryGetError) -> DbErr
fn from(e: TryGetError) -> DbErr
impl Eq for DbErr
Auto Trait Implementationsยง
impl Freeze for DbErr
impl !RefUnwindSafe for DbErr
impl Send for DbErr
impl Sync for DbErr
impl Unpin for DbErr
impl !UnwindSafe for DbErr
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
Sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Sourceยงfn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
Sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more