Struct google_datastore1_beta3::CommitResponse[][src]

pub struct CommitResponse {
    pub mutation_results: Option<Vec<MutationResult>>,
    pub index_updates: Option<i32>,
}

The response for Datastore.Commit.

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

The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.

The number of index entries updated during the commit, or zero if none were updated.

Trait Implementations

impl Default for CommitResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for CommitResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CommitResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for CommitResponse
[src]

Auto Trait Implementations