pub struct RecordedObservation {
pub observation_id: u64,
pub report: DifferentialReport,
pub calibration: Value,
}Expand description
Result of durably appending one observation.
Fields§
§observation_id: u64Monotonic id within this state directory.
report: DifferentialReportExact report that was appended.
calibration: ValueReceipt rebuilt after the append.
Trait Implementations§
Source§impl Clone for RecordedObservation
impl Clone for RecordedObservation
Source§fn clone(&self) -> RecordedObservation
fn clone(&self) -> RecordedObservation
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 moreSource§impl Debug for RecordedObservation
impl Debug for RecordedObservation
Source§impl PartialEq for RecordedObservation
impl PartialEq for RecordedObservation
Source§fn eq(&self, other: &RecordedObservation) -> bool
fn eq(&self, other: &RecordedObservation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RecordedObservation
impl StructuralPartialEq for RecordedObservation
Auto Trait Implementations§
impl Freeze for RecordedObservation
impl RefUnwindSafe for RecordedObservation
impl Send for RecordedObservation
impl Sync for RecordedObservation
impl Unpin for RecordedObservation
impl UnsafeUnpin for RecordedObservation
impl UnwindSafe for RecordedObservation
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