Enum oxide_auth::endpoint::OwnerConsent [−][src]
pub enum OwnerConsent<Response: WebResponse> {
Denied,
InProgress(Response),
Authorized(String),
Error(Response::Error),
}Expand description
Answer from OwnerAuthorizer to indicate the owners choice.
Variants
The owner did not authorize the client.
The owner has not yet decided, i.e. the returned page is a form for the user.
Authorized(String)Authorization was granted by the specified user.
Tuple Fields of Authorized
0: StringError(Response::Error)An error occurred while checking authorization.
Tuple Fields of Error
0: Response::Error