pub struct UserToken(pub String);Expand description
A unique identifier for a user. Distinct from a client/session, a user can have multiple sessions at the same time, and is typically the value we use to control access.
Tuple Fields§
§0: StringImplementations§
Trait Implementations§
impl Eq for UserToken
impl StructuralPartialEq for UserToken
Auto Trait Implementations§
impl Freeze for UserToken
impl RefUnwindSafe for UserToken
impl Send for UserToken
impl Sync for UserToken
impl Unpin for UserToken
impl UnsafeUnpin for UserToken
impl UnwindSafe for UserToken
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.