Struct medallion::claims::Registered [] [src]

pub struct Registered {
    pub iss: Option<String>,
    pub sub: Option<String>,
    pub aud: Option<String>,
    pub exp: Option<u64>,
    pub nbf: Option<u64>,
    pub iat: Option<u64>,
    pub jti: Option<String>,
}

The registered claims from the spec.

Fields

Trait Implementations

impl Debug for Registered
[src]

Formats the value using the given formatter.

impl Default for Registered
[src]

Returns the "default value" for a type. Read more

impl PartialEq for Registered
[src]

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

This method tests for !=.