Skip to main content

define_widget_deref

Macro define_widget_deref 

Source
macro_rules! define_widget_deref {
    ($ty:ty) => { ... };
}
Expand description

Implements Deref<Target = Widget> + DerefMut for your widget. It is used to reduce boilerplate code and make it less bug-prone. The same as define_widget_deref_proxy!(YourType, widget).