Struct google_jobs3::CustomAttributeHistogramResult[][src]

pub struct CustomAttributeHistogramResult {
    pub long_value_histogram_result: Option<NumericBucketingResult>,
    pub string_value_histogram_result: Option<HashMap<String, i32>>,
    pub key: Option<String>,
}

Output only.

Custom attribute histogram result.

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

Fields

Stores bucketed histogram counting result or min/max values for custom attribute long values associated with key.

Stores a map from the values of string custom field associated with key to the number of jobs with that value in this histogram result.

Stores the key of custom attribute the histogram is performed on.

Trait Implementations

impl Default for CustomAttributeHistogramResult
[src]

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

impl Clone for CustomAttributeHistogramResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CustomAttributeHistogramResult
[src]

Formats the value using the given formatter. Read more

impl Part for CustomAttributeHistogramResult
[src]

Auto Trait Implementations