Struct rusoto_sdb::ListDomainsResult[][src]

pub struct ListDomainsResult {
    pub domain_names: Option<Vec<String>>,
    pub next_token: Option<String>,
}

Fields

A list of domain names that match the expression.

An opaque token indicating that there are more domains than the specified MaxNumberOfDomains still available.

Trait Implementations

impl Default for ListDomainsResult
[src]

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

impl Debug for ListDomainsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListDomainsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListDomainsResult
[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