Struct tfrecord::Histogram[][src]

pub struct Histogram { /* fields omitted */ }

Concurrent histogram data structure.

The methods of the histogram can be called concurrently.

Implementations

impl Histogram[src]

pub fn new(limits: Vec<R64>) -> Option<Self>[src]

Build a histogram with monotonic value limits.

The values of limits must be monotonically increasing. Otherwise the method returns None.

pub fn min(&self) -> Option<f64>[src]

Get the observed minimum value.

pub fn max(&self) -> Option<f64>[src]

Get the observed maximum value.

pub fn sum(&self) -> f64[src]

Get the summation of contained values.

pub fn sum_squares(&self) -> f64[src]

Get the summation of squares of contained values.

pub fn len(&self) -> usize[src]

Get the number of contained values.

pub fn add(&self, value: R64)[src]

Append a new value.

Trait Implementations

impl Debug for Histogram[src]

impl Default for Histogram[src]

impl From<Histogram> for HistogramProto[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,