pub type ServiceResult<T> = Result<T, BoxError>;
Service result type using Tower’s BoxError pattern for unified error handling
pub enum ServiceResult<T> { Ok(T), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value