pub struct CombinedAudienceGroup {
pub settings: Option<Vec<CombinedAudienceTargetingSetting>>,
}Expand description
Details of combined audience group. All combined audience targeting settings are logically ‘OR’ of each other.
This type is not used in any activity, and only used as part of another schema.
Fields§
§settings: Option<Vec<CombinedAudienceTargetingSetting>>Required. All combined audience targeting settings in combined audience group. Repeated settings with the same id will be ignored. The number of combined audience settings should be no more than five, error will be thrown otherwise.
Trait Implementations§
Source§impl Clone for CombinedAudienceGroup
impl Clone for CombinedAudienceGroup
Source§fn clone(&self) -> CombinedAudienceGroup
fn clone(&self) -> CombinedAudienceGroup
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 CombinedAudienceGroup
impl Debug for CombinedAudienceGroup
Source§impl Default for CombinedAudienceGroup
impl Default for CombinedAudienceGroup
Source§fn default() -> CombinedAudienceGroup
fn default() -> CombinedAudienceGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CombinedAudienceGroup
impl<'de> Deserialize<'de> for CombinedAudienceGroup
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 CombinedAudienceGroup
impl Serialize for CombinedAudienceGroup
impl Part for CombinedAudienceGroup
Auto Trait Implementations§
impl Freeze for CombinedAudienceGroup
impl RefUnwindSafe for CombinedAudienceGroup
impl Send for CombinedAudienceGroup
impl Sync for CombinedAudienceGroup
impl Unpin for CombinedAudienceGroup
impl UnwindSafe for CombinedAudienceGroup
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