MutDomObject

Trait MutDomObject 

Source
pub trait MutDomObject: DomObject {
    // Required method
    unsafe fn init_reflector<D>(&self, obj: *mut JSObject);
}
Expand description

A trait to initialize the Reflector for a DOM object.

Required Methods§

Source

unsafe fn init_reflector<D>(&self, obj: *mut JSObject)

Initializes the Reflector

§Safety

The provided JSObject pointer must point to a valid JSObject.

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§