Struct google_youtubeanalytics2::ResultTableColumnHeader[][src]

pub struct ResultTableColumnHeader {
    pub data_type: Option<String>,
    pub column_type: Option<String>,
    pub name: Option<String>,
}

The description of a column of the result table.

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

Fields

The type of the data in the column (STRING, INTEGER, FLOAT, etc.).

The type of the column (DIMENSION or METRIC).

The name of the dimension or metric.

Trait Implementations

impl Default for ResultTableColumnHeader
[src]

Returns the "default value" for a type. Read more

impl Clone for ResultTableColumnHeader
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResultTableColumnHeader
[src]

Formats the value using the given formatter. Read more

impl Part for ResultTableColumnHeader
[src]

Auto Trait Implementations