pub struct ReconcileHistoryEntry {
pub timestamp: String,
pub duration_ms: u64,
pub report: ReconcileReport,
}Expand description
Single reconciliation history entry.
Fields§
§timestamp: String§duration_ms: u64§report: ReconcileReportTrait Implementations§
Source§impl Clone for ReconcileHistoryEntry
impl Clone for ReconcileHistoryEntry
Source§fn clone(&self) -> ReconcileHistoryEntry
fn clone(&self) -> ReconcileHistoryEntry
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 ReconcileHistoryEntry
impl Debug for ReconcileHistoryEntry
Source§impl<'de> Deserialize<'de> for ReconcileHistoryEntry
impl<'de> Deserialize<'de> for ReconcileHistoryEntry
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
Auto Trait Implementations§
impl Freeze for ReconcileHistoryEntry
impl RefUnwindSafe for ReconcileHistoryEntry
impl Send for ReconcileHistoryEntry
impl Sync for ReconcileHistoryEntry
impl Unpin for ReconcileHistoryEntry
impl UnsafeUnpin for ReconcileHistoryEntry
impl UnwindSafe for ReconcileHistoryEntry
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