trait RenderableDialog:
Send
+ Sync
+ 'static {
// Required method
fn render(&mut self, context: &mut Context) -> bool;
}
Expand description
A small trait to define that a dialog struct can be rendered.
trait RenderableDialog:
Send
+ Sync
+ 'static {
// Required method
fn render(&mut self, context: &mut Context) -> bool;
}
A small trait to define that a dialog struct can be rendered.