pub struct BucketSiteSummary {
pub msg: String,
pub buckets_discovered: usize,
pub total_hits: u64,
}Expand description
Summary of one assert_sometimes_each! site (grouped by msg).
Fields§
§msg: StringAssertion message identifying the site.
buckets_discovered: usizeNumber of unique identity-key buckets discovered.
total_hits: u64Total hit count across all buckets.
Trait Implementations§
Source§impl Clone for BucketSiteSummary
impl Clone for BucketSiteSummary
Source§fn clone(&self) -> BucketSiteSummary
fn clone(&self) -> BucketSiteSummary
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 moreAuto Trait Implementations§
impl Freeze for BucketSiteSummary
impl RefUnwindSafe for BucketSiteSummary
impl Send for BucketSiteSummary
impl Sync for BucketSiteSummary
impl Unpin for BucketSiteSummary
impl UnsafeUnpin for BucketSiteSummary
impl UnwindSafe for BucketSiteSummary
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