[][src]Struct web_sys::DhKeyDeriveParams

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

The DhKeyDeriveParams dictionary.

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

Implementations

impl DhKeyDeriveParams[src]

pub fn new(name: &str, public: &CryptoKey) -> Self[src]

Construct a new DhKeyDeriveParams.

This API requires the following crate features to be activated: CryptoKey, DhKeyDeriveParams

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

Change the name field of this object.

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

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

Change the public field of this object.

This API requires the following crate features to be activated: CryptoKey, DhKeyDeriveParams

Trait Implementations

impl AsRef<DhKeyDeriveParams> for DhKeyDeriveParams[src]

impl AsRef<JsValue> for DhKeyDeriveParams[src]

impl AsRef<Object> for DhKeyDeriveParams[src]

impl Clone for DhKeyDeriveParams[src]

impl Debug for DhKeyDeriveParams[src]

impl Deref for DhKeyDeriveParams[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for DhKeyDeriveParams[src]

impl From<DhKeyDeriveParams> for JsValue[src]

impl From<DhKeyDeriveParams> for Object[src]

impl From<JsValue> for DhKeyDeriveParams[src]

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

impl OptionFromWasmAbi for DhKeyDeriveParams[src]

impl OptionIntoWasmAbi for DhKeyDeriveParams[src]

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

impl PartialEq<DhKeyDeriveParams> for DhKeyDeriveParams[src]

impl RefFromWasmAbi for DhKeyDeriveParams[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<DhKeyDeriveParams>

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

impl StructuralPartialEq for DhKeyDeriveParams[src]

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