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