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