#[non_exhaustive]pub struct DescribeGlobalSettingsOutput {
pub global_settings: Option<HashMap<String, String>>,
pub last_update_time: Option<DateTime>,
/* private fields */
}
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.global_settings: Option<HashMap<String, String>>
The status of the flag isCrossAccountBackupEnabled
.
last_update_time: Option<DateTime>
The date and time that the flag isCrossAccountBackupEnabled
was last updated. This update is in Unix format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
Implementations§
source§impl DescribeGlobalSettingsOutput
impl DescribeGlobalSettingsOutput
sourcepub fn global_settings(&self) -> Option<&HashMap<String, String>>
pub fn global_settings(&self) -> Option<&HashMap<String, String>>
The status of the flag isCrossAccountBackupEnabled
.
sourcepub fn last_update_time(&self) -> Option<&DateTime>
pub fn last_update_time(&self) -> Option<&DateTime>
The date and time that the flag isCrossAccountBackupEnabled
was last updated. This update is in Unix format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
source§impl DescribeGlobalSettingsOutput
impl DescribeGlobalSettingsOutput
sourcepub fn builder() -> DescribeGlobalSettingsOutputBuilder
pub fn builder() -> DescribeGlobalSettingsOutputBuilder
Creates a new builder-style object to manufacture DescribeGlobalSettingsOutput
.
Trait Implementations§
source§impl Clone for DescribeGlobalSettingsOutput
impl Clone for DescribeGlobalSettingsOutput
source§fn clone(&self) -> DescribeGlobalSettingsOutput
fn clone(&self) -> DescribeGlobalSettingsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeGlobalSettingsOutput
impl Debug for DescribeGlobalSettingsOutput
source§impl PartialEq for DescribeGlobalSettingsOutput
impl PartialEq for DescribeGlobalSettingsOutput
source§fn eq(&self, other: &DescribeGlobalSettingsOutput) -> bool
fn eq(&self, other: &DescribeGlobalSettingsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeGlobalSettingsOutput
impl RequestId for DescribeGlobalSettingsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeGlobalSettingsOutput
Auto Trait Implementations§
impl Freeze for DescribeGlobalSettingsOutput
impl RefUnwindSafe for DescribeGlobalSettingsOutput
impl Send for DescribeGlobalSettingsOutput
impl Sync for DescribeGlobalSettingsOutput
impl Unpin for DescribeGlobalSettingsOutput
impl UnwindSafe for DescribeGlobalSettingsOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more