Struct google_firestore1_beta1::DocumentMask[][src]

pub struct DocumentMask {
    pub field_paths: Option<Vec<String>>,
}

A set of field paths on a document. Used to restrict a get or update operation on a document to a subset of its fields. This is different from standard field masks, as this is always scoped to a Document, and takes in account the dynamic nature of Value.

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

Fields

The list of field paths in the mask. See Document.fields for a field path syntax reference.

Trait Implementations

impl Default for DocumentMask
[src]

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

impl Clone for DocumentMask
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DocumentMask
[src]

Formats the value using the given formatter. Read more

impl Part for DocumentMask
[src]

Auto Trait Implementations