Struct oxide_auth::endpoint::AuthorizationFlow[][src]

pub struct AuthorizationFlow<E, R> where
    E: Endpoint<R>,
    R: WebRequest
{ /* fields omitted */ }
Expand description

All relevant methods for handling authorization code requests.

Implementations

Check that the endpoint supports the necessary operations for handling requests.

Binds the endpoint to a particular type of request that it supports, for many implementations this is probably single type anyways.

Panics

Indirectly execute may panic when this flow is instantiated with an inconsistent endpoint, for details see the documentation of Endpoint. For consistent endpoints, the panic is instead caught as an error here.

Use the checked endpoint to execute the authorization flow for a request.

In almost all cases this is followed by executing finish on the result but some users may instead want to inspect the partial result.

Panics

When the registrar or the authorizer returned by the endpoint is suddenly None when previously it was Some(_).

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.