pub enum AuthenticatorParentKey {
Space(SpaceKey),
App(AppKey),
}
Variants§
Implementations§
Source§impl AuthenticatorParentKey
impl AuthenticatorParentKey
pub fn string_bit(&self) -> String
pub fn string_prefix(&self) -> String
Trait Implementations§
Source§impl Clone for AuthenticatorParentKey
impl Clone for AuthenticatorParentKey
Source§fn clone(&self) -> AuthenticatorParentKey
fn clone(&self) -> AuthenticatorParentKey
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 AuthenticatorParentKey
impl Debug for AuthenticatorParentKey
Source§impl<'de> Deserialize<'de> for AuthenticatorParentKey
impl<'de> Deserialize<'de> for AuthenticatorParentKey
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 AuthenticatorParentKey
impl Hash for AuthenticatorParentKey
Source§impl Into<AuthenticatorParentKey> for AppKey
impl Into<AuthenticatorParentKey> for AppKey
Source§fn into(self) -> AuthenticatorParentKey
fn into(self) -> AuthenticatorParentKey
Converts this type into the (usually inferred) input type.
Source§impl Into<AuthenticatorParentKey> for SpaceKey
impl Into<AuthenticatorParentKey> for SpaceKey
Source§fn into(self) -> AuthenticatorParentKey
fn into(self) -> AuthenticatorParentKey
Converts this type into the (usually inferred) input type.
Source§impl Into<ResourceKey> for AuthenticatorParentKey
impl Into<ResourceKey> for AuthenticatorParentKey
Source§fn into(self) -> ResourceKey
fn into(self) -> ResourceKey
Converts this type into the (usually inferred) input type.
Source§impl PartialEq for AuthenticatorParentKey
impl PartialEq for AuthenticatorParentKey
Source§impl Serialize for AuthenticatorParentKey
impl Serialize for AuthenticatorParentKey
Source§impl TryInto<AuthenticatorParentKey> for ResourceKey
impl TryInto<AuthenticatorParentKey> for ResourceKey
impl Eq for AuthenticatorParentKey
impl StructuralPartialEq for AuthenticatorParentKey
Auto Trait Implementations§
impl Freeze for AuthenticatorParentKey
impl RefUnwindSafe for AuthenticatorParentKey
impl Send for AuthenticatorParentKey
impl Sync for AuthenticatorParentKey
impl Unpin for AuthenticatorParentKey
impl UnwindSafe for AuthenticatorParentKey
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