pub struct StringTargetingDimension {
pub targeting_mode: Option<String>,
pub values: Option<Vec<String>>,
}Expand description
Generic targeting with string values used in app, website and publisher targeting.
This type is not used in any activity, and only used as part of another schema.
Fields§
§targeting_mode: Option<String>How the items in this list should be targeted.
values: Option<Vec<String>>The values specified.
Trait Implementations§
Source§impl Clone for StringTargetingDimension
impl Clone for StringTargetingDimension
Source§fn clone(&self) -> StringTargetingDimension
fn clone(&self) -> StringTargetingDimension
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 StringTargetingDimension
impl Debug for StringTargetingDimension
Source§impl Default for StringTargetingDimension
impl Default for StringTargetingDimension
Source§fn default() -> StringTargetingDimension
fn default() -> StringTargetingDimension
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StringTargetingDimension
impl<'de> Deserialize<'de> for StringTargetingDimension
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 StringTargetingDimension
impl Serialize for StringTargetingDimension
impl Part for StringTargetingDimension
Auto Trait Implementations§
impl Freeze for StringTargetingDimension
impl RefUnwindSafe for StringTargetingDimension
impl Send for StringTargetingDimension
impl Sync for StringTargetingDimension
impl Unpin for StringTargetingDimension
impl UnwindSafe for StringTargetingDimension
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