Struct dittolive_ditto::store::StoreObserver
source · pub struct StoreObserver { /* private fields */ }
Expand description
Use ditto.store().register_observer(...)
to create an observer with a callback.
Implementations§
source§impl StoreObserver
impl StoreObserver
sourcepub fn cancel(&self)
pub fn cancel(&self)
Cancels the observation. The handler that was passed in when registering
this store observer will no longer be called. No-op if this store
observer is already cancelled or the owning Ditto
object goes out of
scope.
Cancels this StoreObserver
and its callback.
The callback registered with this StoreObserver
will no longer be called
after calling .cancel()
.
This call is a no-op if this StoreObserver
has already been cancelled
or if the owning Ditto
object has gone out of scope.
sourcepub fn is_cancelled(&self) -> bool
pub fn is_cancelled(&self) -> bool
Returns true if this StoreObserver
has been cancelled.
Trait Implementations§
source§impl Drop for StoreObserver
impl Drop for StoreObserver
source§impl Hash for StoreObserver
impl Hash for StoreObserver
source§impl PartialEq for StoreObserver
impl PartialEq for StoreObserver
impl Eq for StoreObserver
Auto Trait Implementations§
impl Freeze for StoreObserver
impl !RefUnwindSafe for StoreObserver
impl Send for StoreObserver
impl Sync for StoreObserver
impl Unpin for StoreObserver
impl !UnwindSafe for StoreObserver
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more