Trait Aware

Source
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§

Source

fn aware(self) -> Self

Let hframe know about the existence of this entity.

You must call this in anything from the egui world that can overlap with HTML content (like normal egui windows).

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.

Implementations on Foreign Types§

Source§

impl<R> Aware for Option<InnerResponse<R>>

Source§

fn aware(self) -> Self

Implementors§