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