[][src]Struct web_sys::AuthenticatorAssertionResponse

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

The AuthenticatorAssertionResponse class.

MDN Documentation

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

Methods

impl AuthenticatorAssertionResponse[src]

pub fn authenticator_data(&self) -> ArrayBuffer[src]

Getter for the authenticatorData field of this object.

MDN Documentation

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

impl AuthenticatorAssertionResponse[src]

pub fn signature(&self) -> ArrayBuffer[src]

Getter for the signature field of this object.

MDN Documentation

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

impl AuthenticatorAssertionResponse[src]

pub fn user_handle(&self) -> Option<ArrayBuffer>[src]

Getter for the userHandle field of this object.

MDN Documentation

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

Methods from Deref<Target = AuthenticatorResponse>

pub fn client_data_json(&self) -> ArrayBuffer[src]

Getter for the clientDataJSON field of this object.

MDN Documentation

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

Trait Implementations

impl AsRef<AuthenticatorAssertionResponse> for AuthenticatorAssertionResponse[src]

impl AsRef<AuthenticatorResponse> for AuthenticatorAssertionResponse[src]

impl AsRef<JsValue> for AuthenticatorAssertionResponse[src]

impl AsRef<Object> for AuthenticatorAssertionResponse[src]

impl Clone for AuthenticatorAssertionResponse[src]

impl Debug for AuthenticatorAssertionResponse[src]

impl Deref for AuthenticatorAssertionResponse[src]

type Target = AuthenticatorResponse

The resulting type after dereferencing.

impl Eq for AuthenticatorAssertionResponse[src]

impl From<AuthenticatorAssertionResponse> for JsValue[src]

impl From<AuthenticatorAssertionResponse> for AuthenticatorResponse[src]

impl From<AuthenticatorAssertionResponse> for Object[src]

impl From<JsValue> for AuthenticatorAssertionResponse[src]

impl FromWasmAbi for AuthenticatorAssertionResponse[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 AuthenticatorAssertionResponse[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 AuthenticatorAssertionResponse[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 AuthenticatorAssertionResponse[src]

impl OptionFromWasmAbi for AuthenticatorAssertionResponse[src]

impl OptionIntoWasmAbi for AuthenticatorAssertionResponse[src]

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

impl PartialEq<AuthenticatorAssertionResponse> for AuthenticatorAssertionResponse[src]

impl RefFromWasmAbi for AuthenticatorAssertionResponse[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<AuthenticatorAssertionResponse>

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 AuthenticatorAssertionResponse[src]

impl StructuralPartialEq for AuthenticatorAssertionResponse[src]

impl WasmDescribe for AuthenticatorAssertionResponse[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.