Struct google_firestore1_beta1::BatchGetDocumentsResponse[][src]

pub struct BatchGetDocumentsResponse {
    pub found: Option<Document>,
    pub transaction: Option<String>,
    pub read_time: Option<String>,
    pub missing: Option<String>,
}

The streamed response for Firestore.BatchGetDocuments.

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

A document that was requested.

The transaction that was started as part of this request. Will only be set in the first response, and only if BatchGetDocumentsRequest.new_transaction was set in the request.

The time at which the document was read. This may be monotically increasing, in this case the previous documents in the result stream are guaranteed not to have changed between their read_time and this one.

A document name that was requested but does not exist. In the format: projects/{project_id}/databases/{database_id}/documents/{document_path}.

Trait Implementations

impl Default for BatchGetDocumentsResponse
[src]

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

impl Clone for BatchGetDocumentsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BatchGetDocumentsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for BatchGetDocumentsResponse
[src]

Auto Trait Implementations