Struct google_fusiontables2::StyleSetting[][src]

pub struct StyleSetting {
    pub marker_options: Option<PointStyle>,
    pub kind: Option<String>,
    pub table_id: Option<String>,
    pub name: Option<String>,
    pub polygon_options: Option<PolygonStyle>,
    pub polyline_options: Option<LineStyle>,
    pub style_id: Option<i32>,
}

Represents a complete StyleSettings object. The primary key is a combination of the tableId and a styleId.

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

Style definition for points in the table.

The kind of item this is. A StyleSetting contains the style definitions for points, lines, and polygons in a table. Since a table can have any one or all of them, a style definition can have point, line and polygon style definitions.

Identifier for the table.

Optional name for the style setting.

Style definition for polygons in the table.

Style definition for lines in the table.

Identifier for the style setting (unique only within tables).

Trait Implementations

impl Default for StyleSetting
[src]

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

impl Clone for StyleSetting
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StyleSetting
[src]

Formats the value using the given formatter. Read more

impl RequestValue for StyleSetting
[src]

impl ResponseResult for StyleSetting
[src]

Auto Trait Implementations