Struct openid::biscuit::ClaimPresenceOptions[][src]

pub struct ClaimPresenceOptions {
    pub issued_at: Presence,
    pub not_before: Presence,
    pub expiry: Presence,
    pub issuer: Presence,
    pub audience: Presence,
    pub subject: Presence,
    pub id: Presence,
}

Options for claims presence validation

By default, no claims (namely iat, exp, nbf, iss, aud) are required, and they pass validation if they are missing.

Fields

issued_at: Presence

Whether the iat or Issued At field is required

not_before: Presence

Whether the nbf or Not Before field is required

expiry: Presence

Whether the exp or Expiry field is required

issuer: Presence

Whether the iss or Issuer field is required

audience: Presence

Whether the aud or Audience field is required

subject: Presence

Whether the sub or Subject field is required

id: Presence

Whether the jti or JWT ID field is required

Implementations

impl ClaimPresenceOptions[src]

pub fn strict() -> ClaimPresenceOptions[src]

Returns a ClaimPresenceOptions where every claim is required as per RFC7523

Trait Implementations

impl Clone for ClaimPresenceOptions[src]

impl Copy for ClaimPresenceOptions[src]

impl Debug for ClaimPresenceOptions[src]

impl Default for ClaimPresenceOptions[src]

impl Eq for ClaimPresenceOptions[src]

impl PartialEq<ClaimPresenceOptions> for ClaimPresenceOptions[src]

impl StructuralEq for ClaimPresenceOptions[src]

impl StructuralPartialEq for ClaimPresenceOptions[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.