Struct google_firestore1_beta1::RunQueryResponse[][src]

pub struct RunQueryResponse {
    pub skipped_results: Option<i32>,
    pub transaction: Option<String>,
    pub document: Option<Document>,
    pub read_time: Option<String>,
}

The response for Firestore.RunQuery.

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 number of results that have been skipped due to an offset between the last response and the current response.

The transaction that was started as part of this request. Can only be set in the first response, and only if RunQueryRequest.new_transaction was set in the request. If set, no other fields will be set in this response.

A query result. Not set when reporting partial progress.

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

If the query returns no results, a response with read_time and no document will be sent, and this represents the time at which the query was run.

Trait Implementations

impl Default for RunQueryResponse
[src]

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

impl Clone for RunQueryResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RunQueryResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for RunQueryResponse
[src]

Auto Trait Implementations