pub unsafe trait ScriptClass: Sized {
type Kind: ClassKind<Self>;
const NAME: &'static str;
}
Expand description
A trait for types that represent script classes.
§Safety
Implementors must ensure that the type’s layout is compatible with the layout of the native type that has the specified name.
Required Associated Constants§
Required Associated Types§
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.