#[non_exhaustive]pub enum DeviceBinding {
Passkey,
OidcGoogle,
OidcApple,
OidcGeneric {
issuer: String,
},
EmailPassword,
EmailMagicLink,
LanPair,
}Expand description
How a device proved its identity to mint this session.
One variant per first-class provider in the build plan. OidcGeneric
is the escape hatch for ad-hoc OIDC issuers (e.g. enterprise SSO) that
aren’t named providers.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for DeviceBinding
impl Clone for DeviceBinding
Source§fn clone(&self) -> DeviceBinding
fn clone(&self) -> DeviceBinding
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 DeviceBinding
impl Debug for DeviceBinding
Source§impl<'de> Deserialize<'de> for DeviceBinding
impl<'de> Deserialize<'de> for DeviceBinding
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 DeviceBinding
Source§impl PartialEq for DeviceBinding
impl PartialEq for DeviceBinding
Source§impl Serialize for DeviceBinding
impl Serialize for DeviceBinding
impl StructuralPartialEq for DeviceBinding
Auto Trait Implementations§
impl Freeze for DeviceBinding
impl RefUnwindSafe for DeviceBinding
impl Send for DeviceBinding
impl Sync for DeviceBinding
impl Unpin for DeviceBinding
impl UnsafeUnpin for DeviceBinding
impl UnwindSafe for DeviceBinding
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