pub enum SocialProfilesNetworkFollowSegmentOperator {
Follow,
Notfollow,
Noop,
FallthroughString,
}
Expand description
Members who are/not following a linked account on a given social network.
Variants
Follow
Notfollow
Noop
FallthroughString
Implementations
Trait Implementations
sourceimpl Clone for SocialProfilesNetworkFollowSegmentOperator
impl Clone for SocialProfilesNetworkFollowSegmentOperator
sourcefn clone(&self) -> SocialProfilesNetworkFollowSegmentOperator
fn clone(&self) -> SocialProfilesNetworkFollowSegmentOperator
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 Default for SocialProfilesNetworkFollowSegmentOperator
impl Default for SocialProfilesNetworkFollowSegmentOperator
sourcefn default() -> SocialProfilesNetworkFollowSegmentOperator
fn default() -> SocialProfilesNetworkFollowSegmentOperator
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for SocialProfilesNetworkFollowSegmentOperator
impl<'de> Deserialize<'de> for SocialProfilesNetworkFollowSegmentOperator
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 SocialProfilesNetworkFollowSegmentOperator
impl JsonSchema for SocialProfilesNetworkFollowSegmentOperator
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<SocialProfilesNetworkFollowSegmentOperator> for SocialProfilesNetworkFollowSegmentOperator
impl PartialEq<SocialProfilesNetworkFollowSegmentOperator> for SocialProfilesNetworkFollowSegmentOperator
sourcefn eq(&self, other: &SocialProfilesNetworkFollowSegmentOperator) -> bool
fn eq(&self, other: &SocialProfilesNetworkFollowSegmentOperator) -> bool
impl StructuralPartialEq for SocialProfilesNetworkFollowSegmentOperator
Auto Trait Implementations
impl RefUnwindSafe for SocialProfilesNetworkFollowSegmentOperator
impl Send for SocialProfilesNetworkFollowSegmentOperator
impl Sync for SocialProfilesNetworkFollowSegmentOperator
impl Unpin for SocialProfilesNetworkFollowSegmentOperator
impl UnwindSafe for SocialProfilesNetworkFollowSegmentOperator
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