Struct rusoto_ds::DescribeTrustsResult[][src]

pub struct DescribeTrustsResult {
    pub next_token: Option<String>,
    pub trusts: Option<Vec<Trust>>,
}

The result of a DescribeTrust request.

Fields

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeTrusts to retrieve the next set of items.

The list of Trust objects that were retrieved.

It is possible that this list contains less than the number of items specified in the Limit member of the request. This occurs if there are less than the requested number of items left to retrieve, or if the limitations of the operation have been exceeded.

Trait Implementations

impl Default for DescribeTrustsResult
[src]

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

impl Debug for DescribeTrustsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeTrustsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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