Struct jwt_compact::SignedToken[][src]

#[non_exhaustive]
pub struct SignedToken<A: Algorithm + ?Sized, T> { pub signature: A::Signature, pub token: Token<T>, }
Expand description

Token together with the validated token signature.

Examples

#[derive(Serialize, Deserialize)]
struct MyClaims {
    // Custom claims in the token...
}

let token_string: String = // token from an external source
let token = UntrustedToken::new(&token_string)?;
let signed = Hs256.validate_for_signed_token::<MyClaims>(&token, &key)?;

// `signature` is strongly typed.
let signature: Hs256Signature = signed.signature;
// Token itself is available via `token` field.
let claims = signed.token.claims();
claims.validate_expiration(&TimeOptions::default())?;
// Process the claims...

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
signature: A::Signature

Token signature.

token: Token<T>

Verified token.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

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.