[][src]Struct google_analytics3::Columns

pub struct Columns {
    pub items: Option<Vec<Column>>,
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub total_results: Option<i32>,
    pub attribute_names: Option<Vec<String>>,
}

Lists columns (dimensions and metrics) for a particular report type.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

items: Option<Vec<Column>>

List of columns for a report type.

kind: Option<String>

Collection type.

etag: Option<String>

Etag of collection. This etag can be compared with the last response etag to check if response has changed.

total_results: Option<i32>

Total number of columns returned in the response.

attribute_names: Option<Vec<String>>

List of attributes names returned by columns.

Trait Implementations

impl Clone for Columns[src]

impl Debug for Columns[src]

impl Default for Columns[src]

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

impl ResponseResult for Columns[src]

impl Serialize for Columns[src]

Auto Trait Implementations

impl RefUnwindSafe for Columns

impl Send for Columns

impl Sync for Columns

impl Unpin for Columns

impl UnwindSafe for Columns

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

impl<T> Typeable for T where
    T: Any