pub struct LedgerSummary {
pub creation_date_time: Option<f64>,
pub name: Option<String>,
pub state: Option<String>,
}Expand description
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§
Source§impl Clone for LedgerSummary
impl Clone for LedgerSummary
Source§fn clone(&self) -> LedgerSummary
fn clone(&self) -> LedgerSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LedgerSummary
impl Debug for LedgerSummary
Source§impl Default for LedgerSummary
impl Default for LedgerSummary
Source§fn default() -> LedgerSummary
fn default() -> LedgerSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LedgerSummary
impl<'de> Deserialize<'de> for LedgerSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LedgerSummary
impl PartialEq for LedgerSummary
impl StructuralPartialEq for LedgerSummary
Auto Trait Implementations§
impl Freeze for LedgerSummary
impl RefUnwindSafe for LedgerSummary
impl Send for LedgerSummary
impl Sync for LedgerSummary
impl Unpin for LedgerSummary
impl UnwindSafe for LedgerSummary
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
Mutably borrows from an owned value. Read more