pub type LingResult<T> = Result<T, LingError>;
Project-wide result alias.
pub enum LingResult<T> { Ok(T), Err(LingError), }
Contains the success value
Contains the error value