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