pub type CreatePoolResult = Result<Arc<dyn Any + Send + Sync>, CamelError>;
pub enum CreatePoolResult { Ok(Arc<dyn Any + Send + Sync>), Err(CamelError), }
Contains the success value
Contains the error value