[][src]Struct firestore_grpc_cloudrun::BatchGetDocumentsResponse

pub struct BatchGetDocumentsResponse {
    pub transaction: Vec<u8>,
    pub read_time: Option<Timestamp>,
    pub result: Option<Result>,
}

The streamed response for [Firestore.BatchGetDocuments][google.firestore.v1.Firestore.BatchGetDocuments].

Fields

transaction: Vec<u8>

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

read_time: Option<Timestamp>

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.

result: Option<Result>

A single result. This can be empty if the server is just returning a transaction.

Trait Implementations

impl Clone for BatchGetDocumentsResponse[src]

impl Debug for BatchGetDocumentsResponse[src]

impl Default for BatchGetDocumentsResponse[src]

impl Message for BatchGetDocumentsResponse[src]

impl PartialEq<BatchGetDocumentsResponse> for BatchGetDocumentsResponse[src]

impl StructuralPartialEq for BatchGetDocumentsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for BatchGetDocumentsResponse

impl Send for BatchGetDocumentsResponse

impl Sync for BatchGetDocumentsResponse

impl Unpin for BatchGetDocumentsResponse

impl UnwindSafe for BatchGetDocumentsResponse

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]