pub struct Bin {
pub bin_start: f64,
pub bin_end: f64,
pub count: u64,
}
Expand description
Represents a single bin in a classification, including the bin’s lowest (inclusive) and highest (exclusive) values and the number of points within it
Fields§
§bin_start: f64
§bin_end: f64
§count: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bin
impl RefUnwindSafe for Bin
impl Send for Bin
impl Sync for Bin
impl Unpin for Bin
impl UnwindSafe for Bin
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