pub trait ScriptClassOps: ScriptClass + Sealed {
// Required methods
fn new_ref() -> Option<Ref<Self>>;
fn new_ref_with(init: impl FnOnce(&mut Self)) -> Option<Ref<Self>>;
}
Expand description
A trait for operations on script classes.
Required Methods§
Sourcefn new_ref_with(init: impl FnOnce(&mut Self)) -> Option<Ref<Self>>
fn new_ref_with(init: impl FnOnce(&mut Self)) -> Option<Ref<Self>>
Creates a new reference to the class and initializes it with the provided function.
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.