Struct google_firestore1_beta1::ExistenceFilter[][src]

pub struct ExistenceFilter {
    pub count: Option<i32>,
    pub target_id: Option<i32>,
}

A digest of all the documents that match a given target.

This type is not used in any activity, and only used as part of another schema.

Fields

The total count of documents that match target_id.

If different from the count of documents in the client that match, the client must manually determine which documents no longer match the target.

The target ID to which this filter applies.

Trait Implementations

impl Default for ExistenceFilter
[src]

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

impl Clone for ExistenceFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ExistenceFilter
[src]

Formats the value using the given formatter. Read more

impl Part for ExistenceFilter
[src]

Auto Trait Implementations