pub enum PoolError<E> {
    Timeout(TimeoutType),
    Backend(E),
    Closed,
    NoRuntimeSpecified,
    PostCreateHook(HookError<E>),
    PreRecycleHook(HookError<E>),
    PostRecycleHook(HookError<E>),
}Expand description
Possible errors returned by Pool::get() method.
Variants§
Timeout(TimeoutType)
Timeout happened.
Backend(E)
Backend reported an error.
Closed
Pool has been closed.
NoRuntimeSpecified
No Runtime was specified.
PostCreateHook(HookError<E>)
A post_create hook reported an error.
PreRecycleHook(HookError<E>)
A pre_recycle hook reported an error.
PostRecycleHook(HookError<E>)
A post_recycle hook reported an error.
Trait Implementations§
source§impl<E: Error + 'static> Error for PoolError<E>
 
impl<E: Error + 'static> Error for PoolError<E>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl<E> RefUnwindSafe for PoolError<E>where
    E: RefUnwindSafe,
impl<E> Send for PoolError<E>where
    E: Send,
impl<E> Sync for PoolError<E>where
    E: Sync,
impl<E> Unpin for PoolError<E>where
    E: Unpin,
impl<E> UnwindSafe for PoolError<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