pub(crate) trait XRSessionEventMethods<D: DomTypes> {
    // Required methods
    fn Session(&self) -> DomRoot<D::XRSession>;
    fn IsTrusted(&self) -> bool;
    fn Constructor(
        global: &D::Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        type_: DOMString,
        eventInitDict: &XRSessionEventInit<D>,
    ) -> Fallible<DomRoot<D::XRSessionEvent>>;
}

Required Methods§

Source

fn Session(&self) -> DomRoot<D::XRSession>

Source

fn IsTrusted(&self) -> bool

Source

fn Constructor( global: &D::Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, type_: DOMString, eventInitDict: &XRSessionEventInit<D>, ) -> Fallible<DomRoot<D::XRSessionEvent>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§