[][src]Struct gcp_client::google::cloud::automl::v1beta1::Float64Stats

pub struct Float64Stats {
    pub mean: f64,
    pub standard_deviation: f64,
    pub quantiles: Vec<f64>,
    pub histogram_buckets: Vec<HistogramBucket>,
}

The data statistics of a series of FLOAT64 values.

Fields

mean: f64

The mean of the series.

standard_deviation: f64

The standard deviation of the series.

quantiles: Vec<f64>

Ordered from 0 to k k-quantile values of the data series of n values. The value at index i is, approximately, the i*n/k-th smallest value in the series; for i = 0 and i = k these are, respectively, the min and max values.

histogram_buckets: Vec<HistogramBucket>

Histogram buckets of the data series. Sorted by the min value of the bucket, ascendingly, and the number of the buckets is dynamically generated. The buckets are non-overlapping and completely cover whole FLOAT64 range with min of first bucket being "-Infinity", and max of the last one being "Infinity".

Trait Implementations

impl Clone for Float64Stats[src]

impl Debug for Float64Stats[src]

impl Default for Float64Stats[src]

impl Message for Float64Stats[src]

impl PartialEq<Float64Stats> for Float64Stats[src]

impl StructuralPartialEq for Float64Stats[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> Instrument for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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>, 

impl<T> WithSubscriber for T[src]