Struct google_dfareporting2d7::Browser [] [src]

pub struct Browser {
    pub major_version: Option<String>,
    pub kind: Option<String>,
    pub browser_version_id: Option<String>,
    pub name: Option<String>,
    pub dart_id: Option<String>,
    pub minor_version: Option<String>,
}

Contains information about a browser that can be targeted by ads.

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

Major version number (leftmost number) of this browser. For example, for Chrome 5.0.376.86 beta, this field should be set to 5. An asterisk (*) may be used to target any version number, and a question mark (?) may be used to target cases where the version number cannot be identified. For example, Chrome . targets any version of Chrome: 1.2, 2.5, 3.5, and so on. Chrome 3.* targets Chrome 3.1, 3.5, but not 4.0. Firefox ?.? targets cases where the ad server knows the browser is Firefox but can't tell which version it is.

Identifies what kind of resource this is. Value: the fixed string "dfareporting#browser".

ID referring to this grouping of browser and version numbers. This is the ID used for targeting.

Name of this browser.

DART ID of this browser. This is the ID used when generating reports.

Minor version number (number after first dot on left) of this browser. For example, for Chrome 5.0.375.86 beta, this field should be set to 0. An asterisk (*) may be used to target any version number, and a question mark (?) may be used to target cases where the version number cannot be identified. For example, Chrome . targets any version of Chrome: 1.2, 2.5, 3.5, and so on. Chrome 3.* targets Chrome 3.1, 3.5, but not 4.0. Firefox ?.? targets cases where the ad server knows the browser is Firefox but can't tell which version it is.

Trait Implementations

impl Default for Browser
[src]

[src]

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

impl Clone for Browser
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Browser
[src]

[src]

Formats the value using the given formatter.

impl Resource for Browser
[src]