pub trait Observer: Sized {
    fn stop(self) { ... }
}
Expand description

Observers are objects that must be kept in scope to keep observing changes relating to a Ditto instance, such as Subscriptions, PresenceObservers, or LiveQuerys.

Provided Methods

Stop the observer so that it no longer receive updates

Implementors