pub struct CalibrationReport {
pub missing_tags: Vec<String>,
pub extra_tags: Vec<String>,
pub per_tag: BTreeMap<String, TagDiff>,
}Fields§
Tags the runtime emitted but default_batch does not.
Tags default_batch emits but the runtime did not in this capture.
per_tag: BTreeMap<String, TagDiff>Per-tag breakdown: { tag → { observed_keys, synthesised_keys, missing_keys } }.
Trait Implementations§
Source§impl Clone for CalibrationReport
impl Clone for CalibrationReport
Source§fn clone(&self) -> CalibrationReport
fn clone(&self) -> CalibrationReport
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 CalibrationReport
impl Debug for CalibrationReport
Source§impl Default for CalibrationReport
impl Default for CalibrationReport
Source§fn default() -> CalibrationReport
fn default() -> CalibrationReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CalibrationReport
impl<'de> Deserialize<'de> for CalibrationReport
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 CalibrationReport
impl RefUnwindSafe for CalibrationReport
impl Send for CalibrationReport
impl Sync for CalibrationReport
impl Unpin for CalibrationReport
impl UnsafeUnpin for CalibrationReport
impl UnwindSafe for CalibrationReport
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