pub struct ValidatedSessionClaims {
pub user_id: String,
pub session_id: String,
pub user_type: UserType,
}Fields§
§user_id: String§session_id: String§user_type: UserTypeTrait Implementations§
Source§impl Clone for ValidatedSessionClaims
impl Clone for ValidatedSessionClaims
Source§fn clone(&self) -> ValidatedSessionClaims
fn clone(&self) -> ValidatedSessionClaims
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 moreAuto Trait Implementations§
impl Freeze for ValidatedSessionClaims
impl RefUnwindSafe for ValidatedSessionClaims
impl Send for ValidatedSessionClaims
impl Sync for ValidatedSessionClaims
impl Unpin for ValidatedSessionClaims
impl UnwindSafe for ValidatedSessionClaims
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