Struct google_datastore1_beta3::RunQueryRequest[][src]

pub struct RunQueryRequest {
    pub query: Option<Query>,
    pub partition_id: Option<PartitionId>,
    pub gql_query: Option<GqlQuery>,
    pub read_options: Option<ReadOptions>,
}

The request for Datastore.RunQuery.

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 query to run.

Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.

The GQL query to run.

The options for this query.

Trait Implementations

impl Default for RunQueryRequest
[src]

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

impl Clone for RunQueryRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RunQueryRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for RunQueryRequest
[src]

Auto Trait Implementations