pub enum RegisterArgs {
CTAP1(RegisterArgsCtap1),
CTAP2(RegisterArgsCtap2),
}Variants§
CTAP1(RegisterArgsCtap1)
CTAP2(RegisterArgsCtap2)
Trait Implementations§
Source§impl Debug for RegisterArgs
impl Debug for RegisterArgs
Source§impl From<RegisterArgsCtap1> for RegisterArgs
impl From<RegisterArgsCtap1> for RegisterArgs
Source§fn from(args: RegisterArgsCtap1) -> Self
fn from(args: RegisterArgsCtap1) -> Self
Converts to this type from the input type.
Source§impl From<RegisterArgsCtap2> for RegisterArgs
impl From<RegisterArgsCtap2> for RegisterArgs
Source§fn from(args: RegisterArgsCtap2) -> Self
fn from(args: RegisterArgsCtap2) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RegisterArgs
impl RefUnwindSafe for RegisterArgs
impl Send for RegisterArgs
impl Sync for RegisterArgs
impl Unpin for RegisterArgs
impl UnsafeUnpin for RegisterArgs
impl UnwindSafe for RegisterArgs
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