Struct jwt::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>,
}

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 !=.

impl Decodable for Registered
[src]

Deserialize a value using a Decoder.

impl Encodable for Registered
[src]

Serialize a value using an Encoder.