pub type PoolResult<T> = Result<T, PoolErrorCode>;
enum PoolResult<T> { Ok(T), Err(Error<PoolErrorCode>), }
Contains the success value
Contains the error value