#[non_exhaustive]pub struct DescribeGlobalReplicationGroupsOutput {
pub marker: Option<String>,
pub global_replication_groups: Option<Vec<GlobalReplicationGroup>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.marker: Option<String>
An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. >
global_replication_groups: Option<Vec<GlobalReplicationGroup>>
Indicates the slot configuration and global identifier for each slice group.
Implementations
sourceimpl DescribeGlobalReplicationGroupsOutput
impl DescribeGlobalReplicationGroupsOutput
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. >
sourcepub fn global_replication_groups(&self) -> Option<&[GlobalReplicationGroup]>
pub fn global_replication_groups(&self) -> Option<&[GlobalReplicationGroup]>
Indicates the slot configuration and global identifier for each slice group.
sourceimpl DescribeGlobalReplicationGroupsOutput
impl DescribeGlobalReplicationGroupsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeGlobalReplicationGroupsOutput
Trait Implementations
sourceimpl Clone for DescribeGlobalReplicationGroupsOutput
impl Clone for DescribeGlobalReplicationGroupsOutput
sourcefn clone(&self) -> DescribeGlobalReplicationGroupsOutput
fn clone(&self) -> DescribeGlobalReplicationGroupsOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<DescribeGlobalReplicationGroupsOutput> for DescribeGlobalReplicationGroupsOutput
impl PartialEq<DescribeGlobalReplicationGroupsOutput> for DescribeGlobalReplicationGroupsOutput
sourcefn eq(&self, other: &DescribeGlobalReplicationGroupsOutput) -> bool
fn eq(&self, other: &DescribeGlobalReplicationGroupsOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeGlobalReplicationGroupsOutput) -> bool
fn ne(&self, other: &DescribeGlobalReplicationGroupsOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeGlobalReplicationGroupsOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeGlobalReplicationGroupsOutput
impl Send for DescribeGlobalReplicationGroupsOutput
impl Sync for DescribeGlobalReplicationGroupsOutput
impl Unpin for DescribeGlobalReplicationGroupsOutput
impl UnwindSafe for DescribeGlobalReplicationGroupsOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more