Struct google_analyticsdata1_beta::api::DimensionMetadata[][src]

pub struct DimensionMetadata {
    pub api_name: Option<String>,
    pub custom_definition: Option<bool>,
    pub deprecated_api_names: Option<Vec<String>>,
    pub description: Option<String>,
    pub ui_name: Option<String>,
}

Explains a dimension.

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

Fields

api_name: Option<String>

This dimension's name. Useable in Dimension's name. For example, eventName.

custom_definition: Option<bool>

True if the dimension is a custom dimension for this property.

deprecated_api_names: Option<Vec<String>>

Still usable but deprecated names for this dimension. If populated, this dimension is available by either apiName or one of deprecatedApiNames for a period of time. After the deprecation period, the dimension will be available only by apiName.

description: Option<String>

Description of how this dimension is used and calculated.

ui_name: Option<String>

This dimension's name within the Google Analytics user interface. For example, Event name.

Trait Implementations

impl Clone for DimensionMetadata[src]

impl Debug for DimensionMetadata[src]

impl Default for DimensionMetadata[src]

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

impl Part for DimensionMetadata[src]

impl Serialize for DimensionMetadata[src]

Auto Trait Implementations

impl RefUnwindSafe for DimensionMetadata[src]

impl Send for DimensionMetadata[src]

impl Sync for DimensionMetadata[src]

impl Unpin for DimensionMetadata[src]

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