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