Struct google_fusiontables2::Sqlresponse[][src]

pub struct Sqlresponse {
    pub kind: Option<String>,
    pub rows: Option<Vec<Vec<String>>>,
    pub columns: Option<Vec<String>>,
}

Represents a response to a SQL statement.

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

The kind of item this is. For responses to SQL queries, this is always fusiontables#sqlresponse.

The rows in the table. For each cell we print out whatever cell value (e.g., numeric, string) exists. Thus it is important that each cell contains only one value.

Columns in the table.

Trait Implementations

impl Default for Sqlresponse
[src]

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

impl Clone for Sqlresponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Sqlresponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for Sqlresponse
[src]

Auto Trait Implementations

impl Send for Sqlresponse

impl Sync for Sqlresponse