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