pub type Result<R> = Result<R, Error>;
A Result alias where the Err variant is getip::Error.
Result
Err
getip::Error
pub enum Result<R> { Ok(R), Err(Error), }
Contains the success value
Contains the error value