Struct rusoto_ds::DescribeDirectoriesResult[][src]

pub struct DescribeDirectoriesResult {
    pub directory_descriptions: Option<Vec<DirectoryDescription>>,
    pub next_token: Option<String>,
}

Contains the results of the DescribeDirectories operation.

Fields

The list of DirectoryDescription 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.

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

Trait Implementations

impl Default for DescribeDirectoriesResult
[src]

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

impl Debug for DescribeDirectoriesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDirectoriesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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