pub struct JwtSummary {
pub alg: Option<String>,
pub typ: Option<String>,
pub iss: Option<String>,
pub aud: Option<String>,
pub sub_hash: Option<String>,
pub iat: Option<i64>,
pub nbf: Option<i64>,
pub exp: Option<i64>,
pub expired: Option<bool>,
pub seconds_to_expiry: Option<i64>,
pub clock_skew_hint: Option<String>,
}Fields§
§alg: Option<String>§typ: Option<String>§iss: Option<String>§aud: Option<String>§sub_hash: Option<String>§iat: Option<i64>§nbf: Option<i64>§exp: Option<i64>§expired: Option<bool>§seconds_to_expiry: Option<i64>§clock_skew_hint: Option<String>Trait Implementations§
Source§impl Clone for JwtSummary
impl Clone for JwtSummary
Source§fn clone(&self) -> JwtSummary
fn clone(&self) -> JwtSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JwtSummary
impl Debug for JwtSummary
Auto Trait Implementations§
impl Freeze for JwtSummary
impl RefUnwindSafe for JwtSummary
impl Send for JwtSummary
impl Sync for JwtSummary
impl Unpin for JwtSummary
impl UnsafeUnpin for JwtSummary
impl UnwindSafe for JwtSummary
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