pub trait Notifiable: Sync + Send {
    fn mark_as_changed(&self);
}
Expand description

Trait implemented by items with dependencies that need to be notified when they have changed

Required Methods

Indicates that a dependency of this object has changed

Implementations on Foreign Types

The weak reference to a core is generated in monitor_changes: this specifies what happens when a notification is generated for such a reference.

Implementors