Struct rusoto_ds::DescribeDomainControllersResult[][src]

pub struct DescribeDomainControllersResult {
    pub domain_controllers: Option<Vec<DomainController>>,
    pub next_token: Option<String>,
}

Fields

List of the DomainController objects that were retrieved.

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

Trait Implementations

impl Default for DescribeDomainControllersResult
[src]

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

impl Debug for DescribeDomainControllersResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeDomainControllersResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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