pub enum UserAuthInfoType {
User,
}Expand description
OAuth user authentication. The token itself is held in the runtime’s secret token store (keyed by host+login) and is NOT carried in this struct.
Variants§
User
Trait Implementations§
Source§impl Clone for UserAuthInfoType
impl Clone for UserAuthInfoType
Source§fn clone(&self) -> UserAuthInfoType
fn clone(&self) -> UserAuthInfoType
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 Debug for UserAuthInfoType
impl Debug for UserAuthInfoType
Source§impl Default for UserAuthInfoType
impl Default for UserAuthInfoType
Source§fn default() -> UserAuthInfoType
fn default() -> UserAuthInfoType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserAuthInfoType
impl<'de> Deserialize<'de> for UserAuthInfoType
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
impl Eq for UserAuthInfoType
Source§impl PartialEq for UserAuthInfoType
impl PartialEq for UserAuthInfoType
Source§fn eq(&self, other: &UserAuthInfoType) -> bool
fn eq(&self, other: &UserAuthInfoType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UserAuthInfoType
impl Serialize for UserAuthInfoType
impl StructuralPartialEq for UserAuthInfoType
Auto Trait Implementations§
impl Freeze for UserAuthInfoType
impl RefUnwindSafe for UserAuthInfoType
impl Send for UserAuthInfoType
impl Sync for UserAuthInfoType
impl Unpin for UserAuthInfoType
impl UnsafeUnpin for UserAuthInfoType
impl UnwindSafe for UserAuthInfoType
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