pub trait ComponentTrait {
// Required method
fn from_ptr(ptr: *mut c_void) -> Self;
}Expand description
Trait implemented by Unity component wrappers that can be constructed from a raw pointer.
Required Methods§
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.