pub type ChopResult<T> = Result<T, ChopError>;
Result type for CHOP calculations
pub enum ChopResult<T> { Ok(T), Err(ChopError), }
Contains the success value
Contains the error value