pub type PslResult<T> = Result<T, PslError>;
Result type for .psl file operations
pub enum PslResult<T> { Ok(T), Err(PslError), }
Contains the success value
Contains the error value