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