Struct google_firestore1_beta1::ListenResponse[][src]

pub struct ListenResponse {
    pub filter: Option<ExistenceFilter>,
    pub target_change: Option<TargetChange>,
    pub document_delete: Option<DocumentDelete>,
    pub document_change: Option<DocumentChange>,
    pub document_remove: Option<DocumentRemove>,
}

The response for Firestore.Listen.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

A filter to apply to the set of documents previously returned for the given target.

Returned when documents may have been removed from the given target, but the exact documents are unknown.

Targets have changed.

A Document has been deleted.

A Document has changed.

A Document has been removed from a target (because it is no longer relevant to that target).

Trait Implementations

impl Default for ListenResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for ListenResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListenResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListenResponse
[src]

Auto Trait Implementations