pub struct StandardClaims {
pub sub: String,
pub exp: Option<i64>,
pub iat: Option<i64>,
pub nbf: Option<i64>,
pub iss: Option<String>,
pub aud: Option<String>,
}Available on crate features
auth and auth-jwt only.Expand description
Standard JWT claims structure.
Use this if you don’t need custom claims, or as a base for your own type.
Fields§
§sub: StringSubject (usually user ID).
exp: Option<i64>Expiration time (Unix timestamp).
iat: Option<i64>Issued at (Unix timestamp).
nbf: Option<i64>Not before (Unix timestamp).
iss: Option<String>Issuer.
aud: Option<String>Audience.
Trait Implementations§
Source§impl Clone for StandardClaims
impl Clone for StandardClaims
Source§fn clone(&self) -> StandardClaims
fn clone(&self) -> StandardClaims
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StandardClaims
impl Debug for StandardClaims
Source§impl<'de> Deserialize<'de> for StandardClaims
impl<'de> Deserialize<'de> for StandardClaims
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 HasExpiration for StandardClaims
impl HasExpiration for StandardClaims
Source§fn expiration(&self) -> Option<i64>
fn expiration(&self) -> Option<i64>
Get the expiration timestamp (Unix seconds).
Source§fn is_expired(&self) -> bool
fn is_expired(&self) -> bool
Check if the claims have expired.
Source§impl HasSubject for StandardClaims
impl HasSubject for StandardClaims
Auto Trait Implementations§
impl Freeze for StandardClaims
impl RefUnwindSafe for StandardClaims
impl Send for StandardClaims
impl Sync for StandardClaims
impl Unpin for StandardClaims
impl UnwindSafe for StandardClaims
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request