Enum oxide_auth::code_grant::frontend::Authentication
[−]
[src]
pub enum Authentication { Failed, InProgress, Authenticated(String), }
Answer from OwnerAuthorizer to indicate the owners choice.
Variants
Failed
The owner did not authorize the client.
InProgress
The owner has not yet decided, i.e. the returned page is a form for the user.
Authenticated(String)
Authorization was granted by the specified user.
Trait Implementations
impl Clone for Authentication
[src]
fn clone(&self) -> Authentication
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Key for Authentication
[src]
type Value = Authentication
The value type associated with this key type.