pub struct ParentalStatusAssignedTargetingOptionDetails {
pub parental_status: Option<String>,
pub targeting_option_id: Option<String>,
}Expand description
Details for assigned parental status targeting option. This will be populated in the details field of an AssignedTargetingOption when targeting_type is TARGETING_TYPE_PARENTAL_STATUS.
This type is not used in any activity, and only used as part of another schema.
Fields§
§parental_status: Option<String>Required. The parental status of the audience.
targeting_option_id: Option<String>Required. The targeting_option_id of a TargetingOption of type TARGETING_TYPE_PARENTAL_STATUS.
Trait Implementations§
Source§impl Clone for ParentalStatusAssignedTargetingOptionDetails
impl Clone for ParentalStatusAssignedTargetingOptionDetails
Source§fn clone(&self) -> ParentalStatusAssignedTargetingOptionDetails
fn clone(&self) -> ParentalStatusAssignedTargetingOptionDetails
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 ParentalStatusAssignedTargetingOptionDetails
impl Default for ParentalStatusAssignedTargetingOptionDetails
Source§fn default() -> ParentalStatusAssignedTargetingOptionDetails
fn default() -> ParentalStatusAssignedTargetingOptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParentalStatusAssignedTargetingOptionDetails
impl<'de> Deserialize<'de> for ParentalStatusAssignedTargetingOptionDetails
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 ParentalStatusAssignedTargetingOptionDetails
Auto Trait Implementations§
impl Freeze for ParentalStatusAssignedTargetingOptionDetails
impl RefUnwindSafe for ParentalStatusAssignedTargetingOptionDetails
impl Send for ParentalStatusAssignedTargetingOptionDetails
impl Sync for ParentalStatusAssignedTargetingOptionDetails
impl Unpin for ParentalStatusAssignedTargetingOptionDetails
impl UnwindSafe for ParentalStatusAssignedTargetingOptionDetails
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