pub type Result<T> = Result<T, ErrorCode>;
A PAM-specific Result type with an ErrorCode error.
pub enum Result<T> { Ok(T), Err(ErrorCode), }
Contains the success value
Contains the error value