pub struct NegativeKeywordListAssignedTargetingOptionDetails {
pub negative_keyword_list_id: Option<i64>,
}Expand description
Targeting details for negative keyword list. This will be populated in the details field of an AssignedTargetingOption when targeting_type is TARGETING_TYPE_NEGATIVE_KEYWORD_LIST.
This type is not used in any activity, and only used as part of another schema.
Fields§
§negative_keyword_list_id: Option<i64>Required. ID of the negative keyword list. Should refer to the negative_keyword_list_id field of a NegativeKeywordList resource.
Trait Implementations§
Source§impl Clone for NegativeKeywordListAssignedTargetingOptionDetails
impl Clone for NegativeKeywordListAssignedTargetingOptionDetails
Source§fn clone(&self) -> NegativeKeywordListAssignedTargetingOptionDetails
fn clone(&self) -> NegativeKeywordListAssignedTargetingOptionDetails
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 NegativeKeywordListAssignedTargetingOptionDetails
impl Default for NegativeKeywordListAssignedTargetingOptionDetails
Source§fn default() -> NegativeKeywordListAssignedTargetingOptionDetails
fn default() -> NegativeKeywordListAssignedTargetingOptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NegativeKeywordListAssignedTargetingOptionDetails
impl<'de> Deserialize<'de> for NegativeKeywordListAssignedTargetingOptionDetails
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 NegativeKeywordListAssignedTargetingOptionDetails
Auto Trait Implementations§
impl Freeze for NegativeKeywordListAssignedTargetingOptionDetails
impl RefUnwindSafe for NegativeKeywordListAssignedTargetingOptionDetails
impl Send for NegativeKeywordListAssignedTargetingOptionDetails
impl Sync for NegativeKeywordListAssignedTargetingOptionDetails
impl Unpin for NegativeKeywordListAssignedTargetingOptionDetails
impl UnwindSafe for NegativeKeywordListAssignedTargetingOptionDetails
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