[][src]Struct calcify::Bin

pub struct Bin {
    pub in_edge: f64,
    pub ex_edge: f64,
    pub count: u64,
}

A histogram is a Collection of Bins

Fields

in_edge: f64ex_edge: f64count: u64

Methods

impl Bin[src]

pub fn new(in_edge: f64, ex_edge: f64, count: u64) -> Bin[src]

Returns new Bin

Arguments

  • in_edge - f64 Inclusive Edge
  • ex_edge - f64 Exclusive Edge
  • count - u64 Bin value

Trait Implementations

impl Serializable for Bin[src]

impl Clone for Bin[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Bin[src]

impl PartialEq<Bin> for Bin[src]

impl Debug for Bin[src]

impl FromStr for Bin[src]

type Err = ParseFloatError

The associated error which can be returned from parsing.

impl AddAssign<u64> for Bin[src]

fn add_assign(&mut self, other: u64)[src]

Increment Bin count.

Example

use calcify::Bin;
let mut test_bin = Bin::new(0.0,1.0,10);
test_bin += 1;

assert_eq!(test_bin.count, 11);

Auto Trait Implementations

impl Send for Bin

impl Sync for Bin

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.