pub type RegistryResult<T> = Result<T, RegistryError>;
enum RegistryResult<T> { Ok(T), Err(RegistryError), }
Contains the success value
Contains the error value