red4ext_rs

Trait ScriptClass

Source
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§

Source

const NAME: &'static str

Required Associated Types§

Source

type Kind: ClassKind<Self>

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§

Source§

impl ScriptClass for IScriptable

Source§

const NAME: &'static str = "IScriptable"

Source§

type Kind = Native

Source§

impl ScriptClass for ISerializable

Source§

const NAME: &'static str = "ISerializable"

Source§

type Kind = Native

Source§

impl ScriptClass for ScriptableSystem

Source§

const NAME: &'static str = "gameScriptableSystem"

Source§

type Kind = Native