1 2 3 4 5 6 7 8
/// A persistent message that is only usable for humans, for example a spinner. pub trait Widget { /// Allows for live interaction with the widget, and its drop is called when the widget should /// be cleared. type Handle; fn text(self) -> Self::Handle; }