pub struct PendingCursorOperation<'order_by> { /* private fields */ }

Implementations

Execute the query generated by the preceding function chaining and return the list of matching documents. This occurs immediately.

Enables you to subscribe to changes that occur on a collection. Having a subscription acts as a signal to others that you are interested in receiving updates when local or remote changes are made to documents that match the query generated by the chain of operations that precedes the call to subscribe. The returned DittoSubscription object must be kept in scope for as long as you want to keep receiving updates.

Panics

Panics if Ditto has been closed.

Update the document with the matching ID.

  • updater - a Fn which will be called on all matching documents

Note that fetching the documents occurs in one transaction and then applying updater to all fetched documents occurs in a single, second transaction.

Limit the number of documents that get returned when querying a collection for matching documents.

Offset the resulting set of matching documents. This is useful if you aren’t interested in the first N matching documents for one reason or another. For example, you might already have queried the collection and obtained the first 20 matching documents and so you might want to run the same query as you did previously but ignore the first 20 matching documents, and that is where you would use offset.

Remove all documents that match the query generated by the preceding function chaining. Returns the IDs of all documents removed

Evict all documents that match the query generated by the preceding function chaining.

Enables you to listen for changes that occur on a collection. This won’t subscribe to receive changes made remotely by others and so it will only fire updates when a local change is made. If you want to receive remotely performed updates as well then you need to also call subscribe with the relevant query. The returned DittoLiveQuery object must be kept in scope for as long as you want the provided eventHandler to be called when an update occurs.

Sort the documents that match the query provided in the preceding find-like function call.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts to T by calling Into<T>::into.
Tries to convert to T by calling TryInto<T>::try_into.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.