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