pub(crate) trait MutDomObject: DomObject {
// Required methods
unsafe fn init_reflector<D>(&self, obj: *mut JSObject);
unsafe fn init_reflector_without_associated_memory(
&self,
obj: *mut JSObject,
);
}Expand description
A trait to initialize the Reflector for a DOM object.
Required Methods§
Sourceunsafe fn init_reflector<D>(&self, obj: *mut JSObject)
unsafe fn init_reflector<D>(&self, obj: *mut 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.