Struct google_datastore1_beta3::LookupResponse[][src]

pub struct LookupResponse {
    pub found: Option<Vec<EntityResult>>,
    pub missing: Option<Vec<EntityResult>>,
    pub deferred: Option<Vec<Key>>,
}

The response for Datastore.Lookup.

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

Entities found as ResultType.FULL entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Entities not found as ResultType.KEY_ONLY entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

A list of keys that were not looked up due to resource constraints. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Trait Implementations

impl Default for LookupResponse
[src]

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

impl Clone for LookupResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LookupResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for LookupResponse
[src]

Auto Trait Implementations