Struct google_jobs3::NumericBucketingResult[][src]

pub struct NumericBucketingResult {
    pub counts: Option<Vec<BucketizedCount>>,
    pub max_value: Option<f64>,
    pub min_value: Option<f64>,
}

Output only.

Custom numeric bucketing result.

This type is not used in any activity, and only used as part of another schema.

Fields

Count within each bucket. Its size is the length of NumericBucketingOption.bucket_bounds plus 1.

Stores the maximum value of the numeric field. Is populated only if [NumericBucketingOption.requires_min_max] is set to true.

Stores the minimum value of the numeric field. Will be populated only if [NumericBucketingOption.requires_min_max] is set to true.

Trait Implementations

impl Default for NumericBucketingResult
[src]

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

impl Clone for NumericBucketingResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NumericBucketingResult
[src]

Formats the value using the given formatter. Read more

impl Part for NumericBucketingResult
[src]

Auto Trait Implementations