Struct aws_sdk_directory::operation::describe_domain_controllers::DescribeDomainControllersOutput
source · #[non_exhaustive]pub struct DescribeDomainControllersOutput {
pub domain_controllers: Option<Vec<DomainController>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_controllers: Option<Vec<DomainController>>
List of the DomainController
objects that were retrieved.
next_token: Option<String>
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.
Implementations§
source§impl DescribeDomainControllersOutput
impl DescribeDomainControllersOutput
sourcepub fn domain_controllers(&self) -> Option<&[DomainController]>
pub fn domain_controllers(&self) -> Option<&[DomainController]>
List of the DomainController
objects that were retrieved.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl DescribeDomainControllersOutput
impl DescribeDomainControllersOutput
sourcepub fn builder() -> DescribeDomainControllersOutputBuilder
pub fn builder() -> DescribeDomainControllersOutputBuilder
Creates a new builder-style object to manufacture DescribeDomainControllersOutput
.
Trait Implementations§
source§impl Clone for DescribeDomainControllersOutput
impl Clone for DescribeDomainControllersOutput
source§fn clone(&self) -> DescribeDomainControllersOutput
fn clone(&self) -> DescribeDomainControllersOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for DescribeDomainControllersOutput
impl PartialEq for DescribeDomainControllersOutput
source§fn eq(&self, other: &DescribeDomainControllersOutput) -> bool
fn eq(&self, other: &DescribeDomainControllersOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeDomainControllersOutput
impl RequestId for DescribeDomainControllersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeDomainControllersOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeDomainControllersOutput
impl Send for DescribeDomainControllersOutput
impl Sync for DescribeDomainControllersOutput
impl Unpin for DescribeDomainControllersOutput
impl UnwindSafe for DescribeDomainControllersOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more