[][src]Struct firestore_grpc_cloudrun::DocumentTransform

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

A transformation of a document.

Fields

document: String

The name of the document to transform.

field_transforms: Vec<FieldTransform>

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

Trait Implementations

impl Clone for DocumentTransform[src]

impl Debug for DocumentTransform[src]

impl Default for DocumentTransform[src]

impl Message for DocumentTransform[src]

impl PartialEq<DocumentTransform> for DocumentTransform[src]

impl StructuralPartialEq for DocumentTransform[src]

Auto Trait Implementations

impl RefUnwindSafe for DocumentTransform

impl Send for DocumentTransform

impl Sync for DocumentTransform

impl Unpin for DocumentTransform

impl UnwindSafe for DocumentTransform

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]