Struct google_dfareporting3::api::City[][src]

pub struct City {
    pub country_code: Option<String>,
    pub country_dart_id: Option<String>,
    pub dart_id: Option<String>,
    pub kind: Option<String>,
    pub metro_code: Option<String>,
    pub metro_dma_id: Option<String>,
    pub name: Option<String>,
    pub region_code: Option<String>,
    pub region_dart_id: Option<String>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

country_code: Option<String>

Country code of the country to which this city belongs.

country_dart_id: Option<String>

DART ID of the country to which this city belongs.

dart_id: Option<String>

DART ID of this city. This is the ID used for targeting and generating reports.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string “dfareporting#city”.

metro_code: Option<String>

Metro region code of the metro region (DMA) to which this city belongs.

metro_dma_id: Option<String>

ID of the metro region (DMA) to which this city belongs.

name: Option<String>

Name of this city.

region_code: Option<String>

Region code of the region to which this city belongs.

region_dart_id: Option<String>

DART ID of the region to which this city belongs.

Trait Implementations

impl Clone for City[src]

impl Debug for City[src]

impl Default for City[src]

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

impl Part for City[src]

impl Serialize for City[src]

Auto Trait Implementations

impl RefUnwindSafe for City

impl Send for City

impl Sync for City

impl Unpin for City

impl UnwindSafe for City

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.