[][src]Struct web_sys::AesGcmParams

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

The AesGcmParams dictionary.

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

Implementations

impl AesGcmParams[src]

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

Construct a new AesGcmParams.

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

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: AesGcmParams

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

Change the additionalData field of this object.

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

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

Change the iv field of this object.

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

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

Change the tagLength field of this object.

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

Trait Implementations

impl AsRef<AesGcmParams> for AesGcmParams[src]

impl AsRef<JsValue> for AesGcmParams[src]

impl AsRef<Object> for AesGcmParams[src]

impl Clone for AesGcmParams[src]

impl Debug for AesGcmParams[src]

impl Deref for AesGcmParams[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for AesGcmParams[src]

impl From<AesGcmParams> for JsValue[src]

impl From<AesGcmParams> for Object[src]

impl From<JsValue> for AesGcmParams[src]

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

impl OptionFromWasmAbi for AesGcmParams[src]

impl OptionIntoWasmAbi for AesGcmParams[src]

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

impl PartialEq<AesGcmParams> for AesGcmParams[src]

impl RefFromWasmAbi for AesGcmParams[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<AesGcmParams>

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

impl StructuralPartialEq for AesGcmParams[src]

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