pub struct MessagingTargeting {
pub targeting_type: Option<String>,
pub conditions: Option<Value>,
pub segment_ids: Option<Vec<String>>,
pub tags: Option<Vec<String>>,
pub subscriber_ids: Option<Vec<String>>,
}Expand description
Targeting block for a messaging dispatch.
Fields§
§targeting_type: Option<String>§conditions: Option<Value>§segment_ids: Option<Vec<String>>§subscriber_ids: Option<Vec<String>>Trait Implementations§
Source§impl Clone for MessagingTargeting
impl Clone for MessagingTargeting
Source§fn clone(&self) -> MessagingTargeting
fn clone(&self) -> MessagingTargeting
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MessagingTargeting
impl Debug for MessagingTargeting
Source§impl Default for MessagingTargeting
impl Default for MessagingTargeting
Source§fn default() -> MessagingTargeting
fn default() -> MessagingTargeting
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MessagingTargeting
impl RefUnwindSafe for MessagingTargeting
impl Send for MessagingTargeting
impl Sync for MessagingTargeting
impl Unpin for MessagingTargeting
impl UnsafeUnpin for MessagingTargeting
impl UnwindSafe for MessagingTargeting
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