Struct google_fusiontables2::ColumnList[][src]

pub struct ColumnList {
    pub next_page_token: Option<String>,
    pub items: Option<Vec<Column>>,
    pub kind: Option<String>,
    pub total_items: Option<i32>,
}

Represents a list of columns in a table.

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

Token used to access the next page of this result. No token is displayed if there are no more pages left.

List of all requested columns.

The kind of item this is. For a column list, this is always fusiontables#columnList.

Total number of columns for the table.

Trait Implementations

impl Default for ColumnList
[src]

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

impl Clone for ColumnList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ColumnList
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ColumnList
[src]

Auto Trait Implementations

impl Send for ColumnList

impl Sync for ColumnList