pub struct Heatmap {
pub grid: GridSpec,
pub counts: Vec<usize>,
pub max_count: usize,
}Expand description
Result of a heatmap computation.
Fields§
§grid: GridSpecThe grid specification used
counts: Vec<usize>Count of items in each cell (row-major order)
max_count: usizeMaximum count in any cell
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Heatmap
impl RefUnwindSafe for Heatmap
impl Send for Heatmap
impl Sync for Heatmap
impl Unpin for Heatmap
impl UnwindSafe for Heatmap
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