Struct oauth2::AuthorizationCode [] [src]

pub struct AuthorizationCode(_);

Authorization code returned from the authorization endpoint.

Trait Implementations

impl Clone for AuthorizationCode
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for AuthorizationCode
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl SecretNewType<String> for AuthorizationCode
[src]

[src]

Create a new AuthorizationCode to wrap the given String.

[src]

Get the secret contained within this AuthorizationCode.

Security Warning

Leaking this value may compromise the security of the OAuth2 flow.

impl Debug for AuthorizationCode
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations