[][src]Struct google_spanner1::ExecuteBatchDmlRequest

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

The request for ExecuteBatchDml

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

seqno: Option<String>

A per-transaction sequence number used to identify this request. This is used in the same space as the seqno in ExecuteSqlRequest. See more details in ExecuteSqlRequest.

transaction: Option<TransactionSelector>

The transaction to use. A ReadWrite transaction is required. Single-use transactions are not supported (to avoid replay). The caller must either supply an existing transaction ID or begin a new transaction.

statements: Option<Vec<Statement>>

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 will stop at the first failed statement; the remaining statements will not run.

REQUIRES: statements_size() > 0.

Trait Implementations

impl RequestValue for ExecuteBatchDmlRequest[src]

impl Clone for ExecuteBatchDmlRequest[src]

impl Default for ExecuteBatchDmlRequest[src]

impl Debug for ExecuteBatchDmlRequest[src]

impl Serialize for ExecuteBatchDmlRequest[src]

impl<'de> Deserialize<'de> for ExecuteBatchDmlRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]