#[non_exhaustive]pub struct BasicClaims<'a> {
pub iss: Option<&'a str>,
pub iat: Option<u64>,
pub exp: Option<u64>,
pub aud: Option<&'a str>,
pub sub: Option<&'a str>,
}Expand description
Contains the issuer ID, when the token was issued, and when the token expires.
The BasicClaims type is intended to be used for generic algorithms which
only require common information in JWTs. For most applications, a custom
application specific type would be required to deserialize all of the
fields.
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.iss: Option<&'a str>The issuer of the token.
iat: Option<u64>When the token was issued as the number of seconds since the Unix epoch.
exp: Option<u64>When the token should expire as the number of seconds since the Unix epoch.
aud: Option<&'a str>The intended audience.
sub: Option<&'a str>The subject.
Trait Implementations§
Source§impl<'a> Clone for BasicClaims<'a>
impl<'a> Clone for BasicClaims<'a>
Source§fn clone(&self) -> BasicClaims<'a>
fn clone(&self) -> BasicClaims<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for BasicClaims<'a>
impl<'a> Debug for BasicClaims<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for BasicClaims<'a>
impl<'de: 'a, 'a> Deserialize<'de> for BasicClaims<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> PartialEq for BasicClaims<'a>
impl<'a> PartialEq for BasicClaims<'a>
Source§impl<'a> Serialize for BasicClaims<'a>
impl<'a> Serialize for BasicClaims<'a>
impl<'a> Claims for BasicClaims<'a>
impl<'a> Eq for BasicClaims<'a>
impl<'a> StructuralPartialEq for BasicClaims<'a>
Auto Trait Implementations§
impl<'a> Freeze for BasicClaims<'a>
impl<'a> RefUnwindSafe for BasicClaims<'a>
impl<'a> Send for BasicClaims<'a>
impl<'a> Sync for BasicClaims<'a>
impl<'a> Unpin for BasicClaims<'a>
impl<'a> UnwindSafe for BasicClaims<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more