[][src]Struct web_sys::MutationObservingInfo

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

The MutationObservingInfo dictionary.

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

Implementations

impl MutationObservingInfo[src]

pub fn new() -> Self[src]

Construct a new MutationObservingInfo.

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

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

Change the animations field of this object.

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

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

Change the attributeFilter field of this object.

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

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

Change the attributeOldValue field of this object.

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

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

Change the attributes field of this object.

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

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

Change the characterData field of this object.

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

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

Change the characterDataOldValue field of this object.

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

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

Change the childList field of this object.

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

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

Change the nativeAnonymousChildList field of this object.

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

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

Change the subtree field of this object.

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

pub fn observed_node(&mut self, val: Option<&Node>) -> &mut Self[src]

Change the observedNode field of this object.

This API requires the following crate features to be activated: MutationObservingInfo, Node

Trait Implementations

impl AsRef<JsValue> for MutationObservingInfo[src]

impl AsRef<MutationObservingInfo> for MutationObservingInfo[src]

impl AsRef<Object> for MutationObservingInfo[src]

impl Clone for MutationObservingInfo[src]

impl Debug for MutationObservingInfo[src]

impl Deref for MutationObservingInfo[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for MutationObservingInfo[src]

impl From<JsValue> for MutationObservingInfo[src]

impl From<MutationObservingInfo> for JsValue[src]

impl From<MutationObservingInfo> for Object[src]

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

impl OptionFromWasmAbi for MutationObservingInfo[src]

impl OptionIntoWasmAbi for MutationObservingInfo[src]

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

impl PartialEq<MutationObservingInfo> for MutationObservingInfo[src]

impl RefFromWasmAbi for MutationObservingInfo[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<MutationObservingInfo>

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

impl StructuralPartialEq for MutationObservingInfo[src]

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