pub enum VerificationRequirements {
    VerifyClaims {
        acceptable_algorithms: Vec<String>,
        acceptable_issuers: Option<Vec<Issuer>>,
        acceptable_audiences: Option<Vec<Audience>>,
        acceptable_subject: Option<String>,
    },
    VerifySignatureOnly {
        acceptable_algorithms: Vec<String>,
    },
}
Expand description

Verification requirements to use when verifying a signed JWT.

Variants

VerifyClaims

Fields

acceptable_algorithms: Vec<String>

Acceptable signing algorithms.

acceptable_issuers: Option<Vec<Issuer>>

Acceptable issuers. None indicates any issuer is acceptable.

acceptable_audiences: Option<Vec<Audience>>

Acceptable audiences. None indicates any audience is acceptable.

acceptable_subject: Option<String>

Acceptable subject. None indicates any subject is acceptable.

Verify the signature and provided claims for the JWT.

VerifySignatureOnly

Fields

acceptable_algorithms: Vec<String>

Acceptable signing algorithms.

Only verify the signature of the JWT but do not verify any claims.

Implementations

Acceptable signing algorithms.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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.