Trait red4ext_rs::IntoRepr
source · pub trait IntoRepr: Sized {
type Repr: NativeRepr;
// Required method
fn into_repr(self) -> Self::Repr;
}
Expand description
A trait for types that can be converted into a representation that can be passed across the FFI boundary to the game.
Required Associated Types§
type Repr: NativeRepr
Required Methods§
Object Safety§
This trait is not object safe.