Struct gapi_grpc::google::spanner::v1::ExecuteBatchDmlRequest[][src]

pub struct ExecuteBatchDmlRequest {
    pub session: String,
    pub transaction: Option<TransactionSelector>,
    pub statements: Vec<Statement>,
    pub seqno: i64,
    pub request_options: Option<RequestOptions>,
}

The request for [ExecuteBatchDml][google.spanner.v1.Spanner.ExecuteBatchDml].

Fields

session: String

Required. The session in which the DML statements should be performed.

transaction: Option<TransactionSelector>

Required. The transaction to use. Must be a read-write transaction.

To protect against replays, single-use transactions are not supported. The caller must either supply an existing transaction ID or begin a new transaction.

statements: Vec<Statement>

Required. The list of statements to execute in this batch. Statements are executed serially, such that the effects of statement i are visible to statement i+1. Each statement must be a DML statement. Execution stops at the first failed statement; the remaining statements are not executed.

Callers must provide at least one statement.

seqno: i64

Required. A per-transaction sequence number used to identify this request. This field makes each request idempotent such that if the request is received multiple times, at most one will succeed.

The sequence number must be monotonically increasing within the transaction. If a request arrives for the first time with an out-of-order sequence number, the transaction may be aborted. Replays of previously handled requests will yield the same response as the first execution.

request_options: Option<RequestOptions>

Common options for this request.

Trait Implementations

impl Clone for ExecuteBatchDmlRequest[src]

impl Debug for ExecuteBatchDmlRequest[src]

impl Default for ExecuteBatchDmlRequest[src]

impl Message for ExecuteBatchDmlRequest[src]

impl PartialEq<ExecuteBatchDmlRequest> for ExecuteBatchDmlRequest[src]

impl StructuralPartialEq for ExecuteBatchDmlRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ExecuteBatchDmlRequest

impl Send for ExecuteBatchDmlRequest

impl Sync for ExecuteBatchDmlRequest

impl Unpin for ExecuteBatchDmlRequest

impl UnwindSafe for ExecuteBatchDmlRequest

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> 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]