[][src]Struct web_sys::PageTransitionEventInit

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

The PageTransitionEventInit dictionary.

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

Methods

impl PageTransitionEventInit[src]

pub fn new() -> Self[src]

Construct a new PageTransitionEventInit.

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

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

Change the bubbles field of this object.

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

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

Change the cancelable field of this object.

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

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

Change the composed field of this object.

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

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

Change the inFrameSwap field of this object.

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

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

Change the persisted field of this object.

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

Trait Implementations

impl AsRef<JsValue> for PageTransitionEventInit[src]

impl AsRef<Object> for PageTransitionEventInit[src]

impl AsRef<PageTransitionEventInit> for PageTransitionEventInit[src]

impl Clone for PageTransitionEventInit[src]

impl Debug for PageTransitionEventInit[src]

impl Deref for PageTransitionEventInit[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for PageTransitionEventInit[src]

impl From<JsValue> for PageTransitionEventInit[src]

impl From<PageTransitionEventInit> for JsValue[src]

impl From<PageTransitionEventInit> for Object[src]

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

impl OptionFromWasmAbi for PageTransitionEventInit[src]

impl OptionIntoWasmAbi for PageTransitionEventInit[src]

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

impl PartialEq<PageTransitionEventInit> for PageTransitionEventInit[src]

impl RefFromWasmAbi for PageTransitionEventInit[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<PageTransitionEventInit>

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

impl StructuralPartialEq for PageTransitionEventInit[src]

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