pub type CDnsResult<T> = Result<T, CDnsError>;
enum CDnsResult<T> { Ok(T), Err(CDnsError), }
Contains the success value
Contains the error value