pub trait GPUUncapturedErrorEventMethods {
    // Required methods
    fn Error(&self) -> Root<Dom<GPUError>>;
    fn IsTrusted(&self) -> bool;
    fn Constructor(
        global: &GlobalScope,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        type_: DOMString,
        gpuUncapturedErrorEventInitDict: &GPUUncapturedErrorEventInit,
    ) -> Root<Dom<GPUUncapturedErrorEvent>>;
}

Required Methods§

source

fn Error(&self) -> Root<Dom<GPUError>>

source

fn IsTrusted(&self) -> bool

source

fn Constructor( global: &GlobalScope, proto: Option<HandleObject<'_>>, can_gc: CanGc, type_: DOMString, gpuUncapturedErrorEventInitDict: &GPUUncapturedErrorEventInit, ) -> Root<Dom<GPUUncapturedErrorEvent>>

Object Safety§

This trait is not object safe.

Implementors§