pub enum OrmErrorKind {
Message,
Connection,
Compile,
Migration,
Mapping,
Execution,
Transaction,
Concurrency,
}Expand description
Stable high-level classification for ORM errors.
Variants§
Trait Implementations§
Source§impl Clone for OrmErrorKind
impl Clone for OrmErrorKind
Source§fn clone(&self) -> OrmErrorKind
fn clone(&self) -> OrmErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OrmErrorKind
impl Debug for OrmErrorKind
Source§impl PartialEq for OrmErrorKind
impl PartialEq for OrmErrorKind
Source§fn eq(&self, other: &OrmErrorKind) -> bool
fn eq(&self, other: &OrmErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OrmErrorKind
impl Eq for OrmErrorKind
impl StructuralPartialEq for OrmErrorKind
Auto Trait Implementations§
impl Freeze for OrmErrorKind
impl RefUnwindSafe for OrmErrorKind
impl Send for OrmErrorKind
impl Sync for OrmErrorKind
impl Unpin for OrmErrorKind
impl UnsafeUnpin for OrmErrorKind
impl UnwindSafe for OrmErrorKind
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