[][src]Struct google_dfareporting3d2::Browser

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: Option<String>

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.

kind: Option<String>

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

browser_version_id: Option<String>

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

name: Option<String>

Name of this browser.

dart_id: Option<String>

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

minor_version: Option<String>

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 Resource for Browser[src]

impl Default for Browser[src]

impl Clone for Browser[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Browser[src]

impl Serialize for Browser[src]

impl<'de> Deserialize<'de> for Browser[src]

Auto Trait Implementations

impl Send for Browser

impl Unpin for Browser

impl Sync for Browser

impl UnwindSafe for Browser

impl RefUnwindSafe for Browser

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]