macro_rules! define_widget_deref_proxy {
($ty:ty, $proxy:ident) => { ... };
}Expand description
Implements Deref<Target = Widget> + DerefMut for your widget via the specified struct member.
It is used to reduce boilerplate code and make it less bug-prone.