Enum mailchimp_api::types::EmailSegmentOperator
source · pub enum EmailSegmentOperator {
Contains,
Ends,
Greater,
Is,
Less,
Not,
Notcontain,
Starts,
Noop,
FallthroughString,
}Expand description
Whether the email address is/not exactly, contains/doesn’t contain, starts/ends with a string.
Variants
Contains
Ends
Greater
Is
Less
Not
Notcontain
Starts
Noop
FallthroughString
Implementations
Trait Implementations
sourceimpl Clone for EmailSegmentOperator
impl Clone for EmailSegmentOperator
sourcefn clone(&self) -> EmailSegmentOperator
fn clone(&self) -> EmailSegmentOperator
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 EmailSegmentOperator
impl Debug for EmailSegmentOperator
sourceimpl Default for EmailSegmentOperator
impl Default for EmailSegmentOperator
sourcefn default() -> EmailSegmentOperator
fn default() -> EmailSegmentOperator
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for EmailSegmentOperator
impl<'de> Deserialize<'de> for EmailSegmentOperator
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 Display for EmailSegmentOperator
impl Display for EmailSegmentOperator
sourceimpl JsonSchema for EmailSegmentOperator
impl JsonSchema for EmailSegmentOperator
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<EmailSegmentOperator> for EmailSegmentOperator
impl PartialEq<EmailSegmentOperator> for EmailSegmentOperator
sourcefn eq(&self, other: &EmailSegmentOperator) -> bool
fn eq(&self, other: &EmailSegmentOperator) -> bool
sourceimpl Serialize for EmailSegmentOperator
impl Serialize for EmailSegmentOperator
impl StructuralPartialEq for EmailSegmentOperator
Auto Trait Implementations
impl RefUnwindSafe for EmailSegmentOperator
impl Send for EmailSegmentOperator
impl Sync for EmailSegmentOperator
impl Unpin for EmailSegmentOperator
impl UnwindSafe for EmailSegmentOperator
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