pub struct StateCounts {
pub counts: Vec<(String, i64)>,
pub approximate: bool,
}Expand description
bounded-count contract/bounded live-control contract counts come from a BOUNDED scan, never O(queue depth): past the
threshold, approximate is set instead of paying for exactness.
Fields§
§counts: Vec<(String, i64)>§approximate: boolAuto Trait Implementations§
impl Freeze for StateCounts
impl RefUnwindSafe for StateCounts
impl Send for StateCounts
impl Sync for StateCounts
impl Unpin for StateCounts
impl UnsafeUnpin for StateCounts
impl UnwindSafe for StateCounts
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