Struct google_fusiontables2::TemplateList[][src]

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

Represents a list of templates for a given 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 templates.

The kind of item this is. For a template list, this is always fusiontables#templateList .

Total number of templates for the table.

Trait Implementations

impl Default for TemplateList
[src]

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

impl Clone for TemplateList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TemplateList
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for TemplateList
[src]

Auto Trait Implementations