pub struct AgeRangeTargetingOptionDetails {
pub age_range: Option<String>,
}Expand description
Represents a targetable age range. This will be populated in the age_range_details field when targeting_type is TARGETING_TYPE_AGE_RANGE.
This type is not used in any activity, and only used as part of another schema.
Fields§
§age_range: Option<String>Output only. The age range of an audience.
Trait Implementations§
Source§impl Clone for AgeRangeTargetingOptionDetails
impl Clone for AgeRangeTargetingOptionDetails
Source§fn clone(&self) -> AgeRangeTargetingOptionDetails
fn clone(&self) -> AgeRangeTargetingOptionDetails
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 Default for AgeRangeTargetingOptionDetails
impl Default for AgeRangeTargetingOptionDetails
Source§fn default() -> AgeRangeTargetingOptionDetails
fn default() -> AgeRangeTargetingOptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgeRangeTargetingOptionDetails
impl<'de> Deserialize<'de> for AgeRangeTargetingOptionDetails
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
impl Part for AgeRangeTargetingOptionDetails
Auto Trait Implementations§
impl Freeze for AgeRangeTargetingOptionDetails
impl RefUnwindSafe for AgeRangeTargetingOptionDetails
impl Send for AgeRangeTargetingOptionDetails
impl Sync for AgeRangeTargetingOptionDetails
impl Unpin for AgeRangeTargetingOptionDetails
impl UnwindSafe for AgeRangeTargetingOptionDetails
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