Struct wasmer_deploy_schema::schema::BaseClaims
source · pub struct BaseClaims {
pub exp: OffsetDateTime,
pub iat: OffsetDateTime,
pub sub: String,
}Expand description
Basic JWT claims.
Only default fields.
Fields§
§exp: OffsetDateTimeExpiration time.
iat: OffsetDateTimeIssued at.
sub: StringSubject (aka user id)
Trait Implementations§
source§impl Clone for BaseClaims
impl Clone for BaseClaims
source§fn clone(&self) -> BaseClaims
fn clone(&self) -> BaseClaims
Returns a copy 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 Debug for BaseClaims
impl Debug for BaseClaims
source§impl<'de> Deserialize<'de> for BaseClaims
impl<'de> Deserialize<'de> for BaseClaims
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 PartialEq<BaseClaims> for BaseClaims
impl PartialEq<BaseClaims> for BaseClaims
source§fn eq(&self, other: &BaseClaims) -> bool
fn eq(&self, other: &BaseClaims) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for BaseClaims
impl Serialize for BaseClaims
impl Eq for BaseClaims
impl StructuralEq for BaseClaims
impl StructuralPartialEq for BaseClaims
Auto Trait Implementations§
impl RefUnwindSafe for BaseClaims
impl Send for BaseClaims
impl Sync for BaseClaims
impl Unpin for BaseClaims
impl UnwindSafe for BaseClaims
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.