pub unsafe trait NativeRepr {
const NAME: &'static str;
}
Expand description
A trait for types that can be passed across the FFI boundary to the game engine without any conversion.
§Safety
Implementations of this trait are only valid if the memory representation of Self is idetical to the representation of type with name Self::NAME in-game.
Required Associated Constants§
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.