Struct google_bigquery2::api::Explanation[][src]

pub struct Explanation {
    pub attribution: Option<f64>,
    pub feature_name: Option<String>,
}

Explanation for a single feature.

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

Fields

attribution: Option<f64>

Attribution of feature.

feature_name: Option<String>

Full name of the feature. For non-numerical features, will be formatted like .. Overall size of feature name will always be truncated to first 120 characters.

Trait Implementations

impl Clone for Explanation[src]

impl Debug for Explanation[src]

impl Default for Explanation[src]

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

impl Part for Explanation[src]

impl Serialize for Explanation[src]

Auto Trait Implementations

impl RefUnwindSafe for Explanation[src]

impl Send for Explanation[src]

impl Sync for Explanation[src]

impl Unpin for Explanation[src]

impl UnwindSafe for Explanation[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.