pub struct VisualBin {
pub dimension: String,
pub scope_id: String,
pub from: String,
pub to: String,
pub total: usize,
pub by_kind: BTreeMap<String, usize>,
}Expand description
One bin of one label: the lane is the key, the row inside it the value, and a bin counts the entries standing in that pair whose position falls in its span. A renderer that folds a lane sums its rows.
Fields§
§dimension: String§scope_id: String§from: String§to: String§total: usize§by_kind: BTreeMap<String, usize>Trait Implementations§
impl Eq for VisualBin
impl StructuralPartialEq for VisualBin
Auto Trait Implementations§
impl Freeze for VisualBin
impl RefUnwindSafe for VisualBin
impl Send for VisualBin
impl Sync for VisualBin
impl Unpin for VisualBin
impl UnsafeUnpin for VisualBin
impl UnwindSafe for VisualBin
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