[][src]Struct web_sys::PublicKeyCredentialCreationOptions

#[repr(transparent)]pub struct PublicKeyCredentialCreationOptions { /* fields omitted */ }

The PublicKeyCredentialCreationOptions dictionary.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions

Methods

impl PublicKeyCredentialCreationOptions[src]

pub fn new(
    challenge: &Object,
    pub_key_cred_params: &JsValue,
    rp: &PublicKeyCredentialRpEntity,
    user: &PublicKeyCredentialUserEntity
) -> Self
[src]

Construct a new PublicKeyCredentialCreationOptions.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions, PublicKeyCredentialRpEntity, PublicKeyCredentialUserEntity

pub fn attestation(&mut self, val: AttestationConveyancePreference) -> &mut Self[src]

Change the attestation field of this object.

This API requires the following crate features to be activated: AttestationConveyancePreference, PublicKeyCredentialCreationOptions

pub fn authenticator_selection(
    &mut self,
    val: &AuthenticatorSelectionCriteria
) -> &mut Self
[src]

Change the authenticatorSelection field of this object.

This API requires the following crate features to be activated: AuthenticatorSelectionCriteria, PublicKeyCredentialCreationOptions

pub fn challenge(&mut self, val: &Object) -> &mut Self[src]

Change the challenge field of this object.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions

pub fn exclude_credentials(&mut self, val: &JsValue) -> &mut Self[src]

Change the excludeCredentials field of this object.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions

pub fn extensions(
    &mut self,
    val: &AuthenticationExtensionsClientInputs
) -> &mut Self
[src]

Change the extensions field of this object.

This API requires the following crate features to be activated: AuthenticationExtensionsClientInputs, PublicKeyCredentialCreationOptions

pub fn pub_key_cred_params(&mut self, val: &JsValue) -> &mut Self[src]

Change the pubKeyCredParams field of this object.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions

pub fn rp(&mut self, val: &PublicKeyCredentialRpEntity) -> &mut Self[src]

Change the rp field of this object.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions, PublicKeyCredentialRpEntity

pub fn timeout(&mut self, val: u32) -> &mut Self[src]

Change the timeout field of this object.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions

pub fn user(&mut self, val: &PublicKeyCredentialUserEntity) -> &mut Self[src]

Change the user field of this object.

This API requires the following crate features to be activated: PublicKeyCredentialCreationOptions, PublicKeyCredentialUserEntity

Trait Implementations

impl AsRef<JsValue> for PublicKeyCredentialCreationOptions[src]

impl AsRef<Object> for PublicKeyCredentialCreationOptions[src]

impl AsRef<PublicKeyCredentialCreationOptions> for PublicKeyCredentialCreationOptions[src]

impl Clone for PublicKeyCredentialCreationOptions[src]

impl Debug for PublicKeyCredentialCreationOptions[src]

impl Deref for PublicKeyCredentialCreationOptions[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for PublicKeyCredentialCreationOptions[src]

impl From<JsValue> for PublicKeyCredentialCreationOptions[src]

impl From<PublicKeyCredentialCreationOptions> for JsValue[src]

impl From<PublicKeyCredentialCreationOptions> for Object[src]

impl FromWasmAbi for PublicKeyCredentialCreationOptions[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for PublicKeyCredentialCreationOptions[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a PublicKeyCredentialCreationOptions[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for PublicKeyCredentialCreationOptions[src]

impl OptionFromWasmAbi for PublicKeyCredentialCreationOptions[src]

impl OptionIntoWasmAbi for PublicKeyCredentialCreationOptions[src]

impl<'a> OptionIntoWasmAbi for &'a PublicKeyCredentialCreationOptions[src]

impl PartialEq<PublicKeyCredentialCreationOptions> for PublicKeyCredentialCreationOptions[src]

impl RefFromWasmAbi for PublicKeyCredentialCreationOptions[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<PublicKeyCredentialCreationOptions>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralEq for PublicKeyCredentialCreationOptions[src]

impl StructuralPartialEq for PublicKeyCredentialCreationOptions[src]

impl WasmDescribe for PublicKeyCredentialCreationOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.