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