pub type Result<T> = Result<T, RdapError>;
Convenience alias used throughout the crate.
pub enum Result<T> { Ok(T), Err(RdapError), }
Contains the success value
Contains the error value