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