Struct google_jobs3::HistogramResult[][src]

pub struct HistogramResult {
    pub values: Option<HashMap<String, i32>>,
    pub search_type: Option<String>,
}

Output only.

Result of a histogram call. The response contains the histogram map for the search type specified by HistogramResult.field. The response is a map of each filter value to the corresponding count of jobs for that filter.

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

Fields

A map from the values of field to the number of jobs with that value in this search result.

Key: search type (filter names, such as the companyName).

Values: the count of jobs that match the filter for this search.

The Histogram search filters.

Trait Implementations

impl Default for HistogramResult
[src]

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

impl Clone for HistogramResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HistogramResult
[src]

Formats the value using the given formatter. Read more

impl Part for HistogramResult
[src]

Auto Trait Implementations