Struct google_bigquery2::api::CategoricalValue[][src]

pub struct CategoricalValue {
    pub category_counts: Option<Vec<CategoryCount>>,
}

Representative value of a categorical feature.

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

Fields

category_counts: Option<Vec<CategoryCount>>

Counts of all categories for the categorical feature. If there are more than ten categories, we return top ten (by count) and return one more CategoryCount with category "OTHER" and count as aggregate counts of remaining categories.

Trait Implementations

impl Clone for CategoricalValue[src]

impl Debug for CategoricalValue[src]

impl Default for CategoricalValue[src]

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

impl Part for CategoricalValue[src]

impl Serialize for CategoricalValue[src]

Auto Trait Implementations

impl RefUnwindSafe for CategoricalValue[src]

impl Send for CategoricalValue[src]

impl Sync for CategoricalValue[src]

impl Unpin for CategoricalValue[src]

impl UnwindSafe for CategoricalValue[src]

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> Instrument 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.