[][src]Struct rusoto_backup::DescribeGlobalSettingsOutput

pub struct DescribeGlobalSettingsOutput {
    pub global_settings: Option<HashMap<String, String>>,
    pub last_update_time: Option<f64>,
}

Fields

global_settings: Option<HashMap<String, String>>

A list of resources along with the opt-in preferences for the account.

last_update_time: Option<f64>

The date and time that the global settings 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.

Trait Implementations

impl Clone for DescribeGlobalSettingsOutput[src]

impl Debug for DescribeGlobalSettingsOutput[src]

impl Default for DescribeGlobalSettingsOutput[src]

impl<'de> Deserialize<'de> for DescribeGlobalSettingsOutput[src]

impl PartialEq<DescribeGlobalSettingsOutput> for DescribeGlobalSettingsOutput[src]

impl StructuralPartialEq for DescribeGlobalSettingsOutput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.