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