[][src]Struct rusoto_qldb::LedgerSummary

pub struct LedgerSummary {
    pub creation_date_time: Option<f64>,
    pub name: Option<String>,
    pub state: Option<String>,
}

Information about a ledger, including its name, state, and when it was created.

Fields

creation_date_time: Option<f64>

The date and time, in epoch time format, when the ledger was created. (Epoch time format is the number of seconds elapsed since 12:00:00 AM January 1, 1970 UTC.)

name: Option<String>

The name of the ledger.

state: Option<String>

The current status of the ledger.

Trait Implementations

impl Clone for LedgerSummary[src]

impl Debug for LedgerSummary[src]

impl Default for LedgerSummary[src]

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

impl PartialEq<LedgerSummary> for LedgerSummary[src]

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