dittolive-ditto 4.0.0-beta1

Ditto is a peer to peer cross-platform database that allows mobile, web, IoT and server apps to sync with or without an internet connection.
Documentation
/// Make sure an Observer
pub trait Observer: Sized {
    /// Stop the observer to no longer receive updates
    fn stop(self) {
        // By taking ownership of the observer, we ensure it get dropped
    }
}