pub trait RTCErrorEventMethods<D>
where D: DomTypes,
{ // Required methods fn Error(&self) -> Root<Dom<<D as DomTypes>::RTCError>>; fn IsTrusted(&self) -> bool; fn Constructor( global: &<D as DomTypes>::Window, proto: Option<Handle<'_, *mut JSObject>>, can_gc: CanGc, type_: DOMString, eventInitDict: &RTCErrorEventInit<D>, ) -> Root<Dom<<D as DomTypes>::RTCErrorEvent>>; }

Required Methods§

Source

fn Error(&self) -> Root<Dom<<D as DomTypes>::RTCError>>

Source

fn IsTrusted(&self) -> bool

Source

fn Constructor( global: &<D as DomTypes>::Window, proto: Option<Handle<'_, *mut JSObject>>, can_gc: CanGc, type_: DOMString, eventInitDict: &RTCErrorEventInit<D>, ) -> Root<Dom<<D as DomTypes>::RTCErrorEvent>>

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§