pub struct SegmentOptionsType {
pub saved_segment_id: u64,
pub prebuilt_segment_id: String,
pub match_filter: String,
pub conditions: Vec<SegmentConditionsType>,
}
Expand description
Segment Options
Fields§
§saved_segment_id: u64
The id for an existing saved segment.
prebuilt_segment_id: String
The prebuilt segment id, if a prebuilt segment has been designated for this campaign.
match_filter: String
Desc: Segment match type.
conditions: Vec<SegmentConditionsType>
An array of segment conditions.
Trait Implementations§
Source§impl Clone for SegmentOptionsType
impl Clone for SegmentOptionsType
Source§fn clone(&self) -> SegmentOptionsType
fn clone(&self) -> SegmentOptionsType
Returns a copy 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 SegmentOptionsType
impl Debug for SegmentOptionsType
Source§impl Default for SegmentOptionsType
impl Default for SegmentOptionsType
Source§fn default() -> SegmentOptionsType
fn default() -> SegmentOptionsType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SegmentOptionsTypewhere
SegmentOptionsType: Default,
impl<'de> Deserialize<'de> for SegmentOptionsTypewhere
SegmentOptionsType: Default,
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
Auto Trait Implementations§
impl Freeze for SegmentOptionsType
impl RefUnwindSafe for SegmentOptionsType
impl Send for SegmentOptionsType
impl Sync for SegmentOptionsType
impl Unpin for SegmentOptionsType
impl UnwindSafe for SegmentOptionsType
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