pub struct RegisterArgsCtap2 {
pub challenge: Vec<u8>,
pub relying_party: RelyingParty,
pub origin: String,
pub user: User,
pub pub_cred_params: Vec<PublicKeyCredentialParameters>,
pub exclude_list: Vec<PublicKeyCredentialDescriptor>,
pub options: MakeCredentialsOptions,
pub extensions: MakeCredentialsExtensions,
pub pin: Option<Pin>,
}Fields§
§challenge: Vec<u8>§relying_party: RelyingParty§origin: String§user: User§pub_cred_params: Vec<PublicKeyCredentialParameters>§exclude_list: Vec<PublicKeyCredentialDescriptor>§options: MakeCredentialsOptions§extensions: MakeCredentialsExtensions§pin: Option<Pin>Trait Implementations§
Source§impl Clone for RegisterArgsCtap2
impl Clone for RegisterArgsCtap2
Source§fn clone(&self) -> RegisterArgsCtap2
fn clone(&self) -> RegisterArgsCtap2
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 RegisterArgsCtap2
impl Debug for RegisterArgsCtap2
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 RegisterArgsCtap2
impl RefUnwindSafe for RegisterArgsCtap2
impl Send for RegisterArgsCtap2
impl Sync for RegisterArgsCtap2
impl Unpin for RegisterArgsCtap2
impl UnsafeUnpin for RegisterArgsCtap2
impl UnwindSafe for RegisterArgsCtap2
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