#[non_exhaustive]pub struct DescribeGlobalClustersOutput {
pub marker: Option<String>,
pub global_clusters: Option<Vec<GlobalCluster>>,
/* 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.marker: Option<String>§
global_clusters: Option<Vec<GlobalCluster>>Implementations§
source§impl DescribeGlobalClustersOutput
impl DescribeGlobalClustersOutput
sourcepub fn global_clusters(&self) -> Option<&[GlobalCluster]>
pub fn global_clusters(&self) -> Option<&[GlobalCluster]>
source§impl DescribeGlobalClustersOutput
impl DescribeGlobalClustersOutput
sourcepub fn builder() -> DescribeGlobalClustersOutputBuilder
pub fn builder() -> DescribeGlobalClustersOutputBuilder
Creates a new builder-style object to manufacture DescribeGlobalClustersOutput.
Trait Implementations§
source§impl Clone for DescribeGlobalClustersOutput
impl Clone for DescribeGlobalClustersOutput
source§fn clone(&self) -> DescribeGlobalClustersOutput
fn clone(&self) -> DescribeGlobalClustersOutput
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 Debug for DescribeGlobalClustersOutput
impl Debug for DescribeGlobalClustersOutput
source§impl PartialEq for DescribeGlobalClustersOutput
impl PartialEq for DescribeGlobalClustersOutput
source§fn eq(&self, other: &DescribeGlobalClustersOutput) -> bool
fn eq(&self, other: &DescribeGlobalClustersOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeGlobalClustersOutput
impl RequestId for DescribeGlobalClustersOutput
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 DescribeGlobalClustersOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeGlobalClustersOutput
impl Send for DescribeGlobalClustersOutput
impl Sync for DescribeGlobalClustersOutput
impl Unpin for DescribeGlobalClustersOutput
impl UnwindSafe for DescribeGlobalClustersOutput
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