pub trait Widget {
// Required method
fn render(&mut self, ui: &mut dyn UiCtx);
}Expand description
A UI widget that can render itself into a UiCtx.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".