pub struct SocialProfilesNetworkFollowSegment {
pub condition_type: Option<SocialProfilesNetworkFollowSegmentConditionType>,
pub field: SocialProfilesNetworkSegmentField,
pub op: SocialProfilesNetworkFollowSegmentOperator,
pub value: SocialProfilesNetworkFollowSegmentOperatorData,
}
Expand description
Segment by social network in Social Profiles data.
Fields
condition_type: Option<SocialProfilesNetworkFollowSegmentConditionType>
Segment by social network in Social Profiles data.
field: SocialProfilesNetworkSegmentField
Segment by social network in Social Profiles data.
op: SocialProfilesNetworkFollowSegmentOperator
Members who are/not following a linked account on a given social network.
value: SocialProfilesNetworkFollowSegmentOperatorData
The social network to segment against.
Trait Implementations
sourceimpl Clone for SocialProfilesNetworkFollowSegment
impl Clone for SocialProfilesNetworkFollowSegment
sourcefn clone(&self) -> SocialProfilesNetworkFollowSegment
fn clone(&self) -> SocialProfilesNetworkFollowSegment
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<'de> Deserialize<'de> for SocialProfilesNetworkFollowSegment
impl<'de> Deserialize<'de> for SocialProfilesNetworkFollowSegment
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 SocialProfilesNetworkFollowSegment
impl JsonSchema for SocialProfilesNetworkFollowSegment
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<SocialProfilesNetworkFollowSegment> for SocialProfilesNetworkFollowSegment
impl PartialEq<SocialProfilesNetworkFollowSegment> for SocialProfilesNetworkFollowSegment
sourcefn eq(&self, other: &SocialProfilesNetworkFollowSegment) -> bool
fn eq(&self, other: &SocialProfilesNetworkFollowSegment) -> bool
impl StructuralPartialEq for SocialProfilesNetworkFollowSegment
Auto Trait Implementations
impl RefUnwindSafe for SocialProfilesNetworkFollowSegment
impl Send for SocialProfilesNetworkFollowSegment
impl Sync for SocialProfilesNetworkFollowSegment
impl Unpin for SocialProfilesNetworkFollowSegment
impl UnwindSafe for SocialProfilesNetworkFollowSegment
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