pub struct ResponseStats {
pub string_fields: HashMap<String, CategoricalHistogram>,
pub float_fields: HashMap<String, NumericHistogram>,
pub mismatch_counts: HashMap<String, u64>,
pub total_responses: u64,
}Fields§
§string_fields: HashMap<String, CategoricalHistogram>§float_fields: HashMap<String, NumericHistogram>§mismatch_counts: HashMap<String, u64>§total_responses: u64Implementations§
Source§impl ResponseStats
impl ResponseStats
pub fn new() -> Self
pub fn record(&mut self, result: ExtractionResult)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResponseStats
impl RefUnwindSafe for ResponseStats
impl Send for ResponseStats
impl Sync for ResponseStats
impl Unpin for ResponseStats
impl UnsafeUnpin for ResponseStats
impl UnwindSafe for ResponseStats
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