pub trait StateObservation:
Send
+ Sync
+ 'static {
// Required method
fn cancel(&self);
}Expand description
Handle returned by ElementRuntime::observe_state. Calling
Self::cancel removes the listener.
pub trait StateObservation:
Send
+ Sync
+ 'static {
// Required method
fn cancel(&self);
}Handle returned by ElementRuntime::observe_state. Calling
Self::cancel removes the listener.