[][src]Struct firestore_grpc_cloudrun::CommitRequest

pub struct CommitRequest {
    pub database: String,
    pub writes: Vec<Write>,
    pub transaction: Vec<u8>,
}

The request for [Firestore.Commit][google.firestore.v1.Firestore.Commit].

Fields

database: String

Required. The database name. In the format: projects/{project_id}/databases/{database_id}.

writes: Vec<Write>

The writes to apply.

Always executed atomically and in order.

transaction: Vec<u8>

If set, applies all writes in this transaction, and commits it.

Trait Implementations

impl Clone for CommitRequest[src]

impl Debug for CommitRequest[src]

impl Default for CommitRequest[src]

impl Message for CommitRequest[src]

impl PartialEq<CommitRequest> for CommitRequest[src]

impl StructuralPartialEq for CommitRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for CommitRequest

impl Send for CommitRequest

impl Sync for CommitRequest

impl Unpin for CommitRequest

impl UnwindSafe for CommitRequest

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]