[][src]Struct openidconnect::IdToken

pub struct IdToken<AC: AdditionalClaims, GC: GenderClaim, JE: JweContentEncryptionAlgorithm<JT>, JS: JwsSigningAlgorithm<JT>, JT: JsonWebKeyType>(_);

OpenID Connect ID token.

Methods

impl<AC, GC, JE, JS, JT> IdToken<AC, GC, JE, JS, JT> where
    AC: AdditionalClaims,
    GC: GenderClaim,
    JE: JweContentEncryptionAlgorithm<JT>,
    JS: JwsSigningAlgorithm<JT>,
    JT: JsonWebKeyType
[src]

pub fn new<JU, K, S>(
    claims: IdTokenClaims<AC, GC>,
    signing_key: &S,
    alg: JS,
    access_token: Option<&AccessToken>,
    code: Option<&AuthorizationCode>
) -> Result<Self, JsonWebTokenError> where
    JU: JsonWebKeyUse,
    K: JsonWebKey<JS, JT, JU>,
    S: PrivateSigningKey<JS, JT, JU, K>, 
[src]

Initializes an ID token with the specified claims, signed using the given signing key and algorithm.

If an access_token and/or code are provided, this method sets the at_hash and/or c_hash claims using the given signing algorithm, respectively. Otherwise, those claims are unchanged from the values specified in claims.

pub fn claims<'a, 'b, JU, K, N>(
    &'a self,
    verifier: &'b IdTokenVerifier<JS, JT, JU, K>,
    nonce_verifier: N
) -> Result<&'a IdTokenClaims<AC, GC>, ClaimsVerificationError> where
    JU: JsonWebKeyUse,
    K: JsonWebKey<JS, JT, JU>,
    N: NonceVerifier<'a>, 
[src]

Verifies and returns the ID token claims.

pub fn signing_alg(&self) -> Result<JS, SigningError>[src]

Returns the JwsSigningAlgorithm used to sign this ID token.

This function returns an error if the signing algorithm is unsupported.

Trait Implementations

impl<AC, GC, JE, JS, JT> ToString for IdToken<AC, GC, JE, JS, JT> where
    AC: AdditionalClaims,
    GC: GenderClaim,
    JE: JweContentEncryptionAlgorithm<JT>,
    JS: JwsSigningAlgorithm<JT>,
    JT: JsonWebKeyType
[src]

impl<AC: Clone + AdditionalClaims, GC: Clone + GenderClaim, JE: Clone + JweContentEncryptionAlgorithm<JT>, JS: Clone + JwsSigningAlgorithm<JT>, JT: Clone + JsonWebKeyType> Clone for IdToken<AC, GC, JE, JS, JT>[src]

impl<AC: PartialEq + AdditionalClaims, GC: PartialEq + GenderClaim, JE: PartialEq + JweContentEncryptionAlgorithm<JT>, JS: PartialEq + JwsSigningAlgorithm<JT>, JT: PartialEq + JsonWebKeyType> PartialEq<IdToken<AC, GC, JE, JS, JT>> for IdToken<AC, GC, JE, JS, JT>[src]

impl<AC: Debug + AdditionalClaims, GC: Debug + GenderClaim, JE: Debug + JweContentEncryptionAlgorithm<JT>, JS: Debug + JwsSigningAlgorithm<JT>, JT: Debug + JsonWebKeyType> Debug for IdToken<AC, GC, JE, JS, JT>[src]

impl<AC: AdditionalClaims, GC: GenderClaim, JE: JweContentEncryptionAlgorithm<JT>, JS: JwsSigningAlgorithm<JT>, JT: JsonWebKeyType> Serialize for IdToken<AC, GC, JE, JS, JT> where
    AC: AdditionalClaims
[src]

impl<'de, AC: AdditionalClaims, GC: GenderClaim, JE: JweContentEncryptionAlgorithm<JT>, JS: JwsSigningAlgorithm<JT>, JT: JsonWebKeyType> Deserialize<'de> for IdToken<AC, GC, JE, JS, JT> where
    AC: AdditionalClaims
[src]

Auto Trait Implementations

impl<AC, GC, JE, JS, JT> Unpin for IdToken<AC, GC, JE, JS, JT> where
    AC: Unpin,
    GC: Unpin,
    JE: Unpin,
    JS: Unpin,
    JT: Unpin

impl<AC, GC, JE, JS, JT> Sync for IdToken<AC, GC, JE, JS, JT> where
    AC: Sync,
    GC: Sync,
    JE: Sync,
    JS: Sync,
    JT: Sync

impl<AC, GC, JE, JS, JT> Send for IdToken<AC, GC, JE, JS, JT> where
    AC: Send,
    GC: Send,
    JE: Send,
    JS: Send,
    JT: Send

impl<AC, GC, JE, JS, JT> UnwindSafe for IdToken<AC, GC, JE, JS, JT> where
    AC: UnwindSafe,
    GC: UnwindSafe,
    JE: UnwindSafe,
    JS: UnwindSafe,
    JT: UnwindSafe

impl<AC, GC, JE, JS, JT> RefUnwindSafe for IdToken<AC, GC, JE, JS, JT> where
    AC: RefUnwindSafe,
    GC: RefUnwindSafe,
    JE: RefUnwindSafe,
    JS: RefUnwindSafe,
    JT: RefUnwindSafe

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err