pub trait RadiantNode:
Clone
+ RadiantTessellatable
+ RadiantComponentProvider {
// Required methods
fn get_id(&self) -> u64;
fn set_id(&mut self, id: u64);
fn get_bounding_rect(&self) -> [f32; 4];
}
Required Methods§
fn get_id(&self) -> u64
fn set_id(&mut self, id: u64)
fn get_bounding_rect(&self) -> [f32; 4]
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.