pub type CodeGrantResult = Result<CodeGrantResponse, BasicErrorResponse>;Expand description
The authorization server may send us a well defined success or error.
Aliased Type§
pub enum CodeGrantResult {
Ok(CodeGrantResponse),
Err(StandardErrorResponse<BasicErrorResponseType>),
}Variants§
Ok(CodeGrantResponse)
Contains the success value
Err(StandardErrorResponse<BasicErrorResponseType>)
Contains the error value