Struct mailchimp_api::types::GoalTimestampSegment
source · pub struct GoalTimestampSegment {
pub condition_type: Option<GoalTimestampSegmentConditionType>,
pub field: GoalTimestampSegmentField,
pub op: GoalTimestampSegmentOperator,
pub value: String,
}
Expand description
Segment by most recent interaction with a website.
Fields
condition_type: Option<GoalTimestampSegmentConditionType>
Segment by most recent interaction with a website.
field: GoalTimestampSegmentField
Segment by most recent interaction with a website.
op: GoalTimestampSegmentOperator
Whether the website activity happened after, before, or at a given timestamp.
value: String
The name of the folder.
Trait Implementations
sourceimpl Clone for GoalTimestampSegment
impl Clone for GoalTimestampSegment
sourcefn clone(&self) -> GoalTimestampSegment
fn clone(&self) -> GoalTimestampSegment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for GoalTimestampSegment
impl Debug for GoalTimestampSegment
sourceimpl<'de> Deserialize<'de> for GoalTimestampSegment
impl<'de> Deserialize<'de> for GoalTimestampSegment
sourcefn 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
sourceimpl JsonSchema for GoalTimestampSegment
impl JsonSchema for GoalTimestampSegment
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<GoalTimestampSegment> for GoalTimestampSegment
impl PartialEq<GoalTimestampSegment> for GoalTimestampSegment
sourcefn eq(&self, other: &GoalTimestampSegment) -> bool
fn eq(&self, other: &GoalTimestampSegment) -> bool
sourceimpl Serialize for GoalTimestampSegment
impl Serialize for GoalTimestampSegment
impl StructuralPartialEq for GoalTimestampSegment
Auto Trait Implementations
impl RefUnwindSafe for GoalTimestampSegment
impl Send for GoalTimestampSegment
impl Sync for GoalTimestampSegment
impl Unpin for GoalTimestampSegment
impl UnwindSafe for GoalTimestampSegment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more