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