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