Struct rusoto_sdb::SelectResult[][src]

pub struct SelectResult {
    pub items: Option<Vec<Item>>,
    pub next_token: Option<String>,
}

Fields

A list of items that match the select expression.

An opaque token indicating that more items than MaxNumberOfItems were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.

Trait Implementations

impl Default for SelectResult
[src]

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

impl Debug for SelectResult
[src]

Formats the value using the given formatter. Read more

impl Clone for SelectResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SelectResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations