Struct google_firestore1_beta1::WriteResponse[][src]

pub struct WriteResponse {
    pub write_results: Option<Vec<WriteResult>>,
    pub stream_token: Option<String>,
    pub commit_time: Option<String>,
    pub stream_id: Option<String>,
}

The response for Firestore.Write.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The result of applying the writes.

This i-th write result corresponds to the i-th write in the request.

A token that represents the position of this response in the stream. This can be used by a client to resume the stream at this point.

This field is always set.

The time at which the commit occurred.

The ID of the stream. Only set on the first message, when a new stream was created.

Trait Implementations

impl Default for WriteResponse
[src]

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

impl Clone for WriteResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WriteResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for WriteResponse
[src]

Auto Trait Implementations