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