[][src]Struct firestore_grpc_cloudrun::WriteRequest

pub struct WriteRequest {
    pub database: String,
    pub stream_id: String,
    pub writes: Vec<Write>,
    pub stream_token: Vec<u8>,
    pub labels: HashMap<String, String, RandomState>,
}

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

The first request creates a stream, or resumes an existing one from a token.

When creating a new stream, the server replies with a response containing only an ID and a token, to use in the next request.

When resuming a stream, the server first streams any responses later than the given token, then a response containing only an up-to-date token, to use in the next request.

Fields

database: String

Required. The database name. In the format: projects/{project_id}/databases/{database_id}. This is only required in the first message.

stream_id: String

The ID of the write stream to resume. This may only be set in the first message. When left empty, a new write stream will be created.

writes: Vec<Write>

The writes to apply.

Always executed atomically and in order. This must be empty on the first request. This may be empty on the last request. This must not be empty on all other requests.

stream_token: Vec<u8>

A stream token that was previously sent by the server.

The client should set this field to the token from the most recent [WriteResponse][google.firestore.v1.WriteResponse] it has received. This acknowledges that the client has received responses up to this token. After sending this token, earlier tokens may not be used anymore.

The server may close the stream if there are too many unacknowledged responses.

Leave this field unset when creating a new stream. To resume a stream at a specific point, set this field and the stream_id field.

Leave this field unset when creating a new stream.

labels: HashMap<String, String, RandomState>

Labels associated with this write request.

Trait Implementations

impl Clone for WriteRequest[src]

impl Debug for WriteRequest[src]

impl Default for WriteRequest[src]

impl Message for WriteRequest[src]

impl PartialEq<WriteRequest> for WriteRequest[src]

impl StructuralPartialEq for WriteRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for WriteRequest

impl Send for WriteRequest

impl Sync for WriteRequest

impl Unpin for WriteRequest

impl UnwindSafe for WriteRequest

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]