pub trait Aware {
// Required method
fn aware(self) -> Self;
}Expand description
Allows you to implement aware for egui entities so hframe can know about
their existence when applying compositions.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".