pub type DistResult<T> = Result<T, DistError>;
An alias for the common Result type for this crate
pub enum DistResult<T> { Ok(T), Err(DistError), }
Contains the success value
Contains the error value