Struct mailchimp_api::types::SignupSourceSegment
source · pub struct SignupSourceSegment {
pub condition_type: SignupSourceSegmentType,
pub field: SignupSourceSegmentField,
pub op: SignupSourceSegmentOperator,
pub value: String,
}Expand description
Segment by signup source.
Fields
condition_type: SignupSourceSegmentTypefield: SignupSourceSegmentFieldop: SignupSourceSegmentOperatorWhether the member’s signup source was/was not a particular value.
value: StringSegment by signup source.
Trait Implementations
sourceimpl Clone for SignupSourceSegment
impl Clone for SignupSourceSegment
sourcefn clone(&self) -> SignupSourceSegment
fn clone(&self) -> SignupSourceSegment
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 SignupSourceSegment
impl Debug for SignupSourceSegment
sourceimpl<'de> Deserialize<'de> for SignupSourceSegment
impl<'de> Deserialize<'de> for SignupSourceSegment
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 SignupSourceSegment
impl JsonSchema for SignupSourceSegment
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<SignupSourceSegment> for SignupSourceSegment
impl PartialEq<SignupSourceSegment> for SignupSourceSegment
sourcefn eq(&self, other: &SignupSourceSegment) -> bool
fn eq(&self, other: &SignupSourceSegment) -> bool
sourceimpl Serialize for SignupSourceSegment
impl Serialize for SignupSourceSegment
impl StructuralPartialEq for SignupSourceSegment
Auto Trait Implementations
impl RefUnwindSafe for SignupSourceSegment
impl Send for SignupSourceSegment
impl Sync for SignupSourceSegment
impl Unpin for SignupSourceSegment
impl UnwindSafe for SignupSourceSegment
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