pub trait CommandIconExt {
// Required methods
fn icon(self) -> Box<dyn VarBoxed<WidgetFn<()>>>;
fn init_icon(self, icon: WidgetFn<()>) -> Self;
}
Expand description
Adds the icon
command metadata.
The value is an WidgetFn<()>
that can generate any icon widget, the ICONS
service is recommended.
Required Methods§
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.