[][src]Struct google_jobs3::HistogramResult

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

values: Option<HashMap<String, i32>>

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.

search_type: Option<String>

The Histogram search filters.

Trait Implementations

impl Clone for HistogramResult[src]

impl Debug for HistogramResult[src]

impl Default for HistogramResult[src]

impl<'de> Deserialize<'de> for HistogramResult[src]

impl Part for HistogramResult[src]

impl Serialize for HistogramResult[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any