Struct rusoto_cloudsearchdomain::FieldStats [] [src]

pub struct FieldStats {
    pub count: Option<i64>,
    pub max: Option<String>,
    pub mean: Option<String>,
    pub min: Option<String>,
    pub missing: Option<i64>,
    pub stddev: Option<f64>,
    pub sum: Option<f64>,
    pub sum_of_squares: Option<f64>,
}

The statistics for a field calculated in the request.

Fields

The number of documents that contain a value in the specified field in the result set.

The maximum value found in the specified field in the result set.

If the field is numeric (int, int-array, double, or double-array), max is the string representation of a double-precision 64-bit floating point value. If the field is date or date-array, max is the string representation of a date with the format specified in IETF RFC3339: yyyy-mm-ddTHH:mm:ss.SSSZ.

The average of the values found in the specified field in the result set.

If the field is numeric (int, int-array, double, or double-array), mean is the string representation of a double-precision 64-bit floating point value. If the field is date or date-array, mean is the string representation of a date with the format specified in IETF RFC3339: yyyy-mm-ddTHH:mm:ss.SSSZ.

The minimum value found in the specified field in the result set.

If the field is numeric (int, int-array, double, or double-array), min is the string representation of a double-precision 64-bit floating point value. If the field is date or date-array, min is the string representation of a date with the format specified in IETF RFC3339: yyyy-mm-ddTHH:mm:ss.SSSZ.

The number of documents that do not contain a value in the specified field in the result set.

The standard deviation of the values in the specified field in the result set.

The sum of the field values across the documents in the result set. null for date fields.

The sum of all field values in the result set squared.

Trait Implementations

impl Default for FieldStats
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for FieldStats
[src]

[src]

Formats the value using the given formatter.

impl Clone for FieldStats
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more