[][src]Struct google_spanner1::ExecuteBatchDmlResponse

pub struct ExecuteBatchDmlResponse {
    pub status: Option<Status>,
    pub result_sets: Option<Vec<ResultSet>>,
}

The response for ExecuteBatchDml. Contains a list of ResultSet, one for each DML statement that has successfully executed. If a statement fails, the error is returned as part of the response payload. Clients can determine whether all DML statements have run successfully, or if a statement failed, using one of the following approaches:

  1. Check if 'status' field is OkStatus.
  2. Check if result_sets_size() equals the number of statements in ExecuteBatchDmlRequest.

Example 1: A request with 5 DML statements, all executed successfully.

Result: A response with 5 ResultSets, one for each statement in the same order, and an OkStatus.

Example 2: A request with 5 DML statements. The 3rd statement has a syntax error.

Result: A response with 2 ResultSets, for the first 2 statements that run successfully, and a syntax error (INVALID_ARGUMENT) status. From result_set_size() client can determine that the 3rd statement has failed.

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

status: Option<Status>

If all DML statements are executed successfully, status will be OK. Otherwise, the error status of the first failed statement.

result_sets: Option<Vec<ResultSet>>

ResultSets, one for each statement in the request that ran successfully, in the same order as the statements in the request. Each ResultSet will not contain any rows. The ResultSetStats in each ResultSet will contain the number of rows modified by the statement.

Only the first ResultSet in the response contains a valid ResultSetMetadata.

Trait Implementations

impl ResponseResult for ExecuteBatchDmlResponse[src]

impl Default for ExecuteBatchDmlResponse[src]

impl Clone for ExecuteBatchDmlResponse[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ExecuteBatchDmlResponse[src]

impl Serialize for ExecuteBatchDmlResponse[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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