Enum photon_indexer::migration::DbErr
source · pub enum DbErr {
Show 14 variants
ConnectionAcquire,
TryIntoErr {
from: &'static str,
into: &'static str,
source: Box<dyn Error + Sync + Send>,
},
Conn(RuntimeErr),
Exec(RuntimeErr),
Query(RuntimeErr),
ConvertFromU64(&'static str),
UnpackInsertId,
UpdateGetPrimaryKey,
RecordNotFound(String),
AttrNotSet(String),
Custom(String),
Type(String),
Json(String),
Migration(String),
}Expand description
An error from unsuccessful database operations
Variants§
ConnectionAcquire
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
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 IngesterError
impl From<DbErr> for IngesterError
source§impl From<DbErr> for PhotonApiError
impl From<DbErr> for PhotonApiError
source§impl From<TryGetError> for DbErr
impl From<TryGetError> for DbErr
source§fn from(e: TryGetError) -> DbErr
fn from(e: TryGetError) -> DbErr
source§impl PartialEq for DbErr
impl PartialEq for 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<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.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