pub struct AppTargeting {
pub mobile_app_category_targeting: Option<NumericTargetingDimension>,
pub mobile_app_targeting: Option<StringTargetingDimension>,
}Expand description
A subset of app inventory to target. Bid requests that match criteria in at least one of the specified dimensions will be sent.
This type is not used in any activity, and only used as part of another schema.
Fields§
§mobile_app_category_targeting: Option<NumericTargetingDimension>Lists of included and excluded mobile app categories as defined in https://developers.google.com/adwords/api/docs/appendix/mobileappcategories.csv.
mobile_app_targeting: Option<StringTargetingDimension>Targeted app IDs. App IDs can refer to those found in an app store or ones that are not published in an app store. A maximum of 30,000 app IDs can be targeted.
Trait Implementations§
Source§impl Clone for AppTargeting
impl Clone for AppTargeting
Source§fn clone(&self) -> AppTargeting
fn clone(&self) -> AppTargeting
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AppTargeting
impl Debug for AppTargeting
Source§impl Default for AppTargeting
impl Default for AppTargeting
Source§fn default() -> AppTargeting
fn default() -> AppTargeting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppTargeting
impl<'de> Deserialize<'de> for AppTargeting
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AppTargeting
impl Serialize for AppTargeting
impl Part for AppTargeting
Auto Trait Implementations§
impl Freeze for AppTargeting
impl RefUnwindSafe for AppTargeting
impl Send for AppTargeting
impl Sync for AppTargeting
impl Unpin for AppTargeting
impl UnwindSafe for AppTargeting
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more