pub trait PageTransitionEventMethods {
    // Required methods
    fn Persisted(&self) -> bool;
    fn IsTrusted(&self) -> bool;
    fn Constructor(
        global: &Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        type_: DOMString,
        eventInitDict: &PageTransitionEventInit,
    ) -> Result<Root<Dom<PageTransitionEvent>>, Error>;
}

Required Methods§

source

fn Persisted(&self) -> bool

source

fn IsTrusted(&self) -> bool

source

fn Constructor( global: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, type_: DOMString, eventInitDict: &PageTransitionEventInit, ) -> Result<Root<Dom<PageTransitionEvent>>, Error>

Object Safety§

This trait is not object safe.

Implementors§