pub enum DatabaseError<E>where
E: Error + 'static,{
Build(Error),
Execute(E),
Decode(DecodeError),
NoRows,
TooManyRows {
actual: usize,
},
}Variants§
Trait Implementations§
Source§impl<E> Debug for DatabaseError<E>
impl<E> Debug for DatabaseError<E>
Source§impl<E> Display for DatabaseError<E>
impl<E> Display for DatabaseError<E>
Source§impl<E> Error for DatabaseError<E>
impl<E> Error for DatabaseError<E>
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<E> From<DecodeError> for DatabaseError<E>where
E: Error + 'static,
impl<E> From<DecodeError> for DatabaseError<E>where
E: Error + 'static,
Source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> Freeze for DatabaseError<E>where
E: Freeze,
impl<E> RefUnwindSafe for DatabaseError<E>where
E: RefUnwindSafe,
impl<E> Send for DatabaseError<E>where
E: Send,
impl<E> Sync for DatabaseError<E>where
E: Sync,
impl<E> Unpin for DatabaseError<E>where
E: Unpin,
impl<E> UnsafeUnpin for DatabaseError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for DatabaseError<E>where
E: UnwindSafe,
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