pub type ResolverBatchResult = Result<HashMap<String, Value>, Box<dyn Error + Send + Sync>>;
pub enum ResolverBatchResult { Ok(HashMap<String, Value>), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value