Module bones_lib::ecs::prelude::bones_schema::raw_fns
Expand description
Traits implementing raw function calls for cloning, dropping, and creating default values for Rust types.
Traitsยง
- Trait implemented automatically for types that implement
Clone
and can be used to clone the type through raw pointers. - Trait implemented automatically for types that implement
Default
and can be used to write the default value of the type to a pointer. - Trait implemented automatically for types that implement
Drop
and can be used to drop the type through a raw pointer. - Trait implemented automatically for types that implement
Eq
that can compare two values through their pointers.