[][src]Struct rusoto_ds::SnapshotLimits

pub struct SnapshotLimits {
    pub manual_snapshots_current_count: Option<i64>,
    pub manual_snapshots_limit: Option<i64>,
    pub manual_snapshots_limit_reached: Option<bool>,
}

Contains manual snapshot limit information for a directory.

Fields

manual_snapshots_current_count: Option<i64>

The current number of manual snapshots of the directory.

manual_snapshots_limit: Option<i64>

The maximum number of manual snapshots allowed.

manual_snapshots_limit_reached: Option<bool>

Indicates if the manual snapshot limit has been reached.

Trait Implementations

impl Clone for SnapshotLimits[src]

impl Debug for SnapshotLimits[src]

impl Default for SnapshotLimits[src]

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

impl PartialEq<SnapshotLimits> for SnapshotLimits[src]

impl StructuralPartialEq for SnapshotLimits[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> 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.