pub trait ComponentTuple {
// Required methods
fn get_components(entity_api: &mut EntityApiInstanceMut) -> [u32; 16];
fn get_writes() -> [bool; 16];
fn get_count() -> u32;
}
Required Methods§
fn get_components(entity_api: &mut EntityApiInstanceMut) -> [u32; 16]
fn get_writes() -> [bool; 16]
fn get_count() -> u32
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.