Struct google_datastore1::GqlQueryParameter[][src]

pub struct GqlQueryParameter {
    pub cursor: Option<String>,
    pub value: Option<Value>,
}

A binding parameter for a GQL query.

This type is not used in any activity, and only used as part of another schema.

Fields

A query cursor. Query cursors are returned in query result batches.

A value parameter.

Trait Implementations

impl Default for GqlQueryParameter
[src]

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

impl Clone for GqlQueryParameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GqlQueryParameter
[src]

Formats the value using the given formatter. Read more

impl Part for GqlQueryParameter
[src]

Auto Trait Implementations