[][src]Struct web_sys::IntersectionObserverEntryInit

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

The IntersectionObserverEntryInit dictionary.

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

Methods

impl IntersectionObserverEntryInit[src]

pub fn new(
    bounding_client_rect: &DomRectInit,
    intersection_rect: &DomRectInit,
    root_bounds: &DomRectInit,
    target: &Element,
    time: f64
) -> Self
[src]

Construct a new IntersectionObserverEntryInit.

This API requires the following crate features to be activated: DomRectInit, Element, IntersectionObserverEntryInit

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

Change the boundingClientRect field of this object.

This API requires the following crate features to be activated: DomRectInit, IntersectionObserverEntryInit

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

Change the intersectionRect field of this object.

This API requires the following crate features to be activated: DomRectInit, IntersectionObserverEntryInit

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

Change the rootBounds field of this object.

This API requires the following crate features to be activated: DomRectInit, IntersectionObserverEntryInit

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

Change the target field of this object.

This API requires the following crate features to be activated: Element, IntersectionObserverEntryInit

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

Change the time field of this object.

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

Trait Implementations

impl AsRef<IntersectionObserverEntryInit> for IntersectionObserverEntryInit[src]

impl AsRef<JsValue> for IntersectionObserverEntryInit[src]

impl AsRef<Object> for IntersectionObserverEntryInit[src]

impl Clone for IntersectionObserverEntryInit[src]

impl Debug for IntersectionObserverEntryInit[src]

impl Deref for IntersectionObserverEntryInit[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for IntersectionObserverEntryInit[src]

impl From<IntersectionObserverEntryInit> for JsValue[src]

impl From<IntersectionObserverEntryInit> for Object[src]

impl From<JsValue> for IntersectionObserverEntryInit[src]

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

impl OptionFromWasmAbi for IntersectionObserverEntryInit[src]

impl OptionIntoWasmAbi for IntersectionObserverEntryInit[src]

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

impl PartialEq<IntersectionObserverEntryInit> for IntersectionObserverEntryInit[src]

impl RefFromWasmAbi for IntersectionObserverEntryInit[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<IntersectionObserverEntryInit>

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

impl StructuralPartialEq for IntersectionObserverEntryInit[src]

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