pub type ServiceResult = Result<Response, BoxError>;
pub enum ServiceResult { Ok(Response), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value