[][src]Struct web_sys::IntersectionObserverEntry

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

The IntersectionObserverEntry class.

MDN Documentation

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

Implementations

impl IntersectionObserverEntry[src]

pub fn time(&self) -> f64[src]

Getter for the time field of this object.

MDN Documentation

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

impl IntersectionObserverEntry[src]

pub fn root_bounds(&self) -> Option<DomRectReadOnly>[src]

Getter for the rootBounds field of this object.

MDN Documentation

This API requires the following crate features to be activated: DomRectReadOnly, IntersectionObserverEntry

impl IntersectionObserverEntry[src]

pub fn bounding_client_rect(&self) -> DomRectReadOnly[src]

Getter for the boundingClientRect field of this object.

MDN Documentation

This API requires the following crate features to be activated: DomRectReadOnly, IntersectionObserverEntry

impl IntersectionObserverEntry[src]

pub fn intersection_rect(&self) -> DomRectReadOnly[src]

Getter for the intersectionRect field of this object.

MDN Documentation

This API requires the following crate features to be activated: DomRectReadOnly, IntersectionObserverEntry

impl IntersectionObserverEntry[src]

pub fn is_intersecting(&self) -> bool[src]

Getter for the isIntersecting field of this object.

MDN Documentation

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

impl IntersectionObserverEntry[src]

pub fn intersection_ratio(&self) -> f64[src]

Getter for the intersectionRatio field of this object.

MDN Documentation

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

impl IntersectionObserverEntry[src]

pub fn target(&self) -> Element[src]

Getter for the target field of this object.

MDN Documentation

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

Trait Implementations

impl AsRef<IntersectionObserverEntry> for IntersectionObserverEntry[src]

impl AsRef<JsValue> for IntersectionObserverEntry[src]

impl AsRef<Object> for IntersectionObserverEntry[src]

impl Clone for IntersectionObserverEntry[src]

impl Debug for IntersectionObserverEntry[src]

impl Deref for IntersectionObserverEntry[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for IntersectionObserverEntry[src]

impl From<IntersectionObserverEntry> for JsValue[src]

impl From<IntersectionObserverEntry> for Object[src]

impl From<JsValue> for IntersectionObserverEntry[src]

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

impl OptionFromWasmAbi for IntersectionObserverEntry[src]

impl OptionIntoWasmAbi for IntersectionObserverEntry[src]

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

impl PartialEq<IntersectionObserverEntry> for IntersectionObserverEntry[src]

impl RefFromWasmAbi for IntersectionObserverEntry[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<IntersectionObserverEntry>

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

impl StructuralPartialEq for IntersectionObserverEntry[src]

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