pub enum InputPasskeyCredential {
PublicKey(InputPasskeyCredentialPublicKey),
FirebasePnv(InputPasskeyCredentialFirebasePnv),
}Expand description
Variants§
PublicKey(InputPasskeyCredentialPublicKey)
FirebasePnv(InputPasskeyCredentialFirebasePnv)
Trait Implementations§
Source§impl Clone for InputPasskeyCredential
impl Clone for InputPasskeyCredential
Source§fn clone(&self) -> InputPasskeyCredential
fn clone(&self) -> InputPasskeyCredential
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 InputPasskeyCredential
impl Debug for InputPasskeyCredential
Source§impl Deserializable for InputPasskeyCredential
impl Deserializable for InputPasskeyCredential
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<InputPasskeyCredentialFirebasePnv> for InputPasskeyCredential
impl From<InputPasskeyCredentialFirebasePnv> for InputPasskeyCredential
Source§fn from(x: InputPasskeyCredentialFirebasePnv) -> Self
fn from(x: InputPasskeyCredentialFirebasePnv) -> Self
Converts to this type from the input type.
Source§impl From<InputPasskeyCredentialPublicKey> for InputPasskeyCredential
impl From<InputPasskeyCredentialPublicKey> for InputPasskeyCredential
Source§fn from(x: InputPasskeyCredentialPublicKey) -> Self
fn from(x: InputPasskeyCredentialPublicKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputPasskeyCredential
impl PartialEq for InputPasskeyCredential
Source§impl TryFrom<InputPasskeyCredential> for InputPasskeyCredentialFirebasePnv
impl TryFrom<InputPasskeyCredential> for InputPasskeyCredentialFirebasePnv
Source§type Error = InputPasskeyCredential
type Error = InputPasskeyCredential
The type returned in the event of a conversion error.
Source§impl TryFrom<InputPasskeyCredential> for InputPasskeyCredentialPublicKey
impl TryFrom<InputPasskeyCredential> for InputPasskeyCredentialPublicKey
Source§type Error = InputPasskeyCredential
type Error = InputPasskeyCredential
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputPasskeyCredential
Auto Trait Implementations§
impl Freeze for InputPasskeyCredential
impl RefUnwindSafe for InputPasskeyCredential
impl Send for InputPasskeyCredential
impl Sync for InputPasskeyCredential
impl Unpin for InputPasskeyCredential
impl UnsafeUnpin for InputPasskeyCredential
impl UnwindSafe for InputPasskeyCredential
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