pub type PoolResult<T> = Result<T>;
A type alias for Result that uses anyhow::Error as the error type.
pub enum PoolResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value