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