pub type ResolverResult = Result<String, Error>;
enum ResolverResult { Ok(String), Err(Error), }
Contains the success value
Contains the error value