pub struct TimestampSummary {
pub source_changed_ms: Option<u64>,
pub result_checked_ms: Option<u64>,
}Expand description
Optional human timestamps used only for explanation.
Fields§
§source_changed_ms: Option<u64>When source was observed changing.
result_checked_ms: Option<u64>When the current result was checked.
Trait Implementations§
Source§impl Clone for TimestampSummary
impl Clone for TimestampSummary
Source§fn clone(&self) -> TimestampSummary
fn clone(&self) -> TimestampSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TimestampSummary
Source§impl Debug for TimestampSummary
impl Debug for TimestampSummary
Source§impl Default for TimestampSummary
impl Default for TimestampSummary
Source§fn default() -> TimestampSummary
fn default() -> TimestampSummary
Returns the “default value” for a type. Read more
impl Eq for TimestampSummary
Source§impl PartialEq for TimestampSummary
impl PartialEq for TimestampSummary
impl StructuralPartialEq for TimestampSummary
Auto Trait Implementations§
impl Freeze for TimestampSummary
impl RefUnwindSafe for TimestampSummary
impl Send for TimestampSummary
impl Sync for TimestampSummary
impl Unpin for TimestampSummary
impl UnsafeUnpin for TimestampSummary
impl UnwindSafe for TimestampSummary
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