pub enum AuthenticatorKind {
OpenId(Specific),
}
Variants§
Implementations§
Source§impl AuthenticatorKind
impl AuthenticatorKind
pub fn has_specific(&self) -> bool
Source§impl AuthenticatorKind
impl AuthenticatorKind
pub fn get_specific(&self) -> Option<Specific>
Source§impl AuthenticatorKind
impl AuthenticatorKind
pub fn resource_type(&self) -> ResourceType
Trait Implementations§
Source§impl Clone for AuthenticatorKind
impl Clone for AuthenticatorKind
Source§fn clone(&self) -> AuthenticatorKind
fn clone(&self) -> AuthenticatorKind
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 AuthenticatorKind
impl Debug for AuthenticatorKind
Source§impl<'de> Deserialize<'de> for AuthenticatorKind
impl<'de> Deserialize<'de> for AuthenticatorKind
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 Hash for AuthenticatorKind
impl Hash for AuthenticatorKind
Source§impl Into<ResourceKind> for AuthenticatorKind
impl Into<ResourceKind> for AuthenticatorKind
Source§fn into(self) -> ResourceKind
fn into(self) -> ResourceKind
Converts this type into the (usually inferred) input type.
Source§impl Into<ResourceKindParts> for AuthenticatorKind
impl Into<ResourceKindParts> for AuthenticatorKind
Source§fn into(self) -> ResourceKindParts
fn into(self) -> ResourceKindParts
Converts this type into the (usually inferred) input type.
Source§impl PartialEq for AuthenticatorKind
impl PartialEq for AuthenticatorKind
Source§impl Serialize for AuthenticatorKind
impl Serialize for AuthenticatorKind
Source§impl ToString for AuthenticatorKind
impl ToString for AuthenticatorKind
Source§impl TryFrom<ResourceKindParts> for AuthenticatorKind
impl TryFrom<ResourceKindParts> for AuthenticatorKind
Source§impl TryInto<AuthenticatorKind> for ResourceKind
impl TryInto<AuthenticatorKind> for ResourceKind
impl Eq for AuthenticatorKind
impl StructuralPartialEq for AuthenticatorKind
Auto Trait Implementations§
impl Freeze for AuthenticatorKind
impl RefUnwindSafe for AuthenticatorKind
impl Send for AuthenticatorKind
impl Sync for AuthenticatorKind
impl Unpin for AuthenticatorKind
impl UnwindSafe for AuthenticatorKind
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