pub trait AnyVarSubscribe {
// Required method
fn subscribe(&self, op: UpdateOp, widget_id: WidgetId) -> VarHandle;
}Expand description
Extension method to subscribe any widget to a variable.
Also see WIDGET methods for the primary way to subscribe from inside a widget.