[][src]Struct google_jobs3::CustomAttributeHistogramRequest

pub struct CustomAttributeHistogramRequest {
    pub string_value_histogram: Option<bool>,
    pub long_value_histogram_bucketing_option: Option<NumericBucketingOption>,
    pub key: Option<String>,
}

Custom attributes histogram request. An error is thrown if neither string_value_histogram or long_value_histogram_bucketing_option has been defined.

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

Fields

string_value_histogram: Option<bool>

Optional. If set to true, the response includes the histogram value for each key as a string.

long_value_histogram_bucketing_option: Option<NumericBucketingOption>

Optional.

Specifies buckets used to perform a range histogram on Job's filterable long custom field values, or min/max value requirements.

key: Option<String>

Required.

Specifies the custom field key to perform a histogram on. If specified without long_value_histogram_bucketing_option, histogram on string values of the given key is triggered, otherwise histogram is performed on long values.

Trait Implementations

impl Part for CustomAttributeHistogramRequest[src]

impl Default for CustomAttributeHistogramRequest[src]

impl Clone for CustomAttributeHistogramRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CustomAttributeHistogramRequest[src]

impl Serialize for CustomAttributeHistogramRequest[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]