pub struct RefreshTokenFormatDecodeOutput {
pub session_id: Option<String>,
pub token: String,
}Expand description
Output returned from custom refresh token decoders.
Fields§
§session_id: Option<String>§token: StringTrait Implementations§
Source§impl Clone for RefreshTokenFormatDecodeOutput
impl Clone for RefreshTokenFormatDecodeOutput
Source§fn clone(&self) -> RefreshTokenFormatDecodeOutput
fn clone(&self) -> RefreshTokenFormatDecodeOutput
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 PartialEq for RefreshTokenFormatDecodeOutput
impl PartialEq for RefreshTokenFormatDecodeOutput
Source§fn eq(&self, other: &RefreshTokenFormatDecodeOutput) -> bool
fn eq(&self, other: &RefreshTokenFormatDecodeOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RefreshTokenFormatDecodeOutput
impl StructuralPartialEq for RefreshTokenFormatDecodeOutput
Auto Trait Implementations§
impl Freeze for RefreshTokenFormatDecodeOutput
impl RefUnwindSafe for RefreshTokenFormatDecodeOutput
impl Send for RefreshTokenFormatDecodeOutput
impl Sync for RefreshTokenFormatDecodeOutput
impl Unpin for RefreshTokenFormatDecodeOutput
impl UnsafeUnpin for RefreshTokenFormatDecodeOutput
impl UnwindSafe for RefreshTokenFormatDecodeOutput
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§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.