pub type PoolError = PoolError<RedisError>;Available on crate feature
sentinel only.Expand description
Type alias for using deadpool::managed::PoolError with [redis_sentinel].
Aliased Type§
pub enum PoolError {
Timeout(TimeoutType),
Backend(RedisError),
Closed,
NoRuntimeSpecified,
PostCreateHook(HookError<RedisError>),
}Variants§
Timeout(TimeoutType)
Timeout happened.
Backend(RedisError)
Backend reported an error.
Closed
Pool has been closed.
NoRuntimeSpecified
No Runtime was specified.
PostCreateHook(HookError<RedisError>)
A post_create hook reported an error.