pub struct HexBinResult {
pub cells: Vec<(f64, f64, usize)>,
pub max_count: usize,
pub min_count: usize,
}Expand description
Result of binning data points into hexagonal cells.
Fields§
§cells: Vec<(f64, f64, usize)>Center (cx, cy) in data space and point count for each non-empty cell.
max_count: usizeMaximum count across all cells.
min_count: usizeMinimum count across all cells (among those >= mincnt).
Trait Implementations§
Source§impl Clone for HexBinResult
impl Clone for HexBinResult
Source§fn clone(&self) -> HexBinResult
fn clone(&self) -> HexBinResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HexBinResult
impl RefUnwindSafe for HexBinResult
impl Send for HexBinResult
impl Sync for HexBinResult
impl Unpin for HexBinResult
impl UnsafeUnpin for HexBinResult
impl UnwindSafe for HexBinResult
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