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