Struct google_firestore1_beta1::DocumentTransform[][src]

pub struct DocumentTransform {
    pub document: Option<String>,
    pub field_transforms: Option<Vec<FieldTransform>>,
}

A transformation of a document.

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

Fields

The name of the document to transform.

The list of transformations to apply to the fields of the document, in order. This must not be empty.

Trait Implementations

impl Default for DocumentTransform
[src]

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

impl Clone for DocumentTransform
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DocumentTransform
[src]

Formats the value using the given formatter. Read more

impl Part for DocumentTransform
[src]

Auto Trait Implementations