pub trait Widget {
// Required method
fn call(
&mut self,
frame: &mut WidgetFrame<'_>,
states: &mut States
) -> WidgetResult;
}
Expand description
A widget that can be called.
pub trait Widget {
// Required method
fn call(
&mut self,
frame: &mut WidgetFrame<'_>,
states: &mut States
) -> WidgetResult;
}
A widget that can be called.