Type Alias widgetui::widget::WidgetResult
source · pub type WidgetResult = Result<(), Box<dyn Error>>;Expand description
The main result that a widget will always return.
Aliased Type§
enum WidgetResult {
Ok(()),
Err(Box<dyn Error>),
}