pub enum AuthTokenType {
RefreshToken,
AccessToken,
}Variants§
Trait Implementations§
Source§impl Clone for AuthTokenType
impl Clone for AuthTokenType
Source§fn clone(&self) -> AuthTokenType
fn clone(&self) -> AuthTokenType
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 moreSource§impl Debug for AuthTokenType
impl Debug for AuthTokenType
Source§impl<'de> Deserialize<'de> for AuthTokenType
impl<'de> Deserialize<'de> for AuthTokenType
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 for AuthTokenType
impl PartialEq for AuthTokenType
Source§impl Serialize for AuthTokenType
impl Serialize for AuthTokenType
impl StructuralPartialEq for AuthTokenType
Auto Trait Implementations§
impl Freeze for AuthTokenType
impl RefUnwindSafe for AuthTokenType
impl Send for AuthTokenType
impl Sync for AuthTokenType
impl Unpin for AuthTokenType
impl UnwindSafe for AuthTokenType
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