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