[][src]Struct rusoto_ds::Snapshot

pub struct Snapshot {
    pub directory_id: Option<String>,
    pub name: Option<String>,
    pub snapshot_id: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub type_: Option<String>,
}

Describes a directory snapshot.

Fields

directory_id: Option<String>

The directory identifier.

name: Option<String>

The descriptive name of the snapshot.

snapshot_id: Option<String>

The snapshot identifier.

start_time: Option<f64>

The date and time that the snapshot was taken.

status: Option<String>

The snapshot status.

type_: Option<String>

The snapshot type.

Trait Implementations

impl Clone for Snapshot[src]

impl Debug for Snapshot[src]

impl Default for Snapshot[src]

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

impl PartialEq<Snapshot> for Snapshot[src]

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