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