pub enum MemberRatingSegmentOperator {
Greater,
Is,
Less,
Not,
Noop,
FallthroughString,
}
Expand description
Members who have have a rating that is/not exactly a given number or members who have a rating greater/less than a given number.
Variants
Greater
Is
Less
Not
Noop
FallthroughString
Implementations
Trait Implementations
sourceimpl Clone for MemberRatingSegmentOperator
impl Clone for MemberRatingSegmentOperator
sourcefn clone(&self) -> MemberRatingSegmentOperator
fn clone(&self) -> MemberRatingSegmentOperator
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 MemberRatingSegmentOperator
impl Debug for MemberRatingSegmentOperator
sourceimpl Default for MemberRatingSegmentOperator
impl Default for MemberRatingSegmentOperator
sourcefn default() -> MemberRatingSegmentOperator
fn default() -> MemberRatingSegmentOperator
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for MemberRatingSegmentOperator
impl<'de> Deserialize<'de> for MemberRatingSegmentOperator
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 MemberRatingSegmentOperator
impl Display for MemberRatingSegmentOperator
sourceimpl JsonSchema for MemberRatingSegmentOperator
impl JsonSchema for MemberRatingSegmentOperator
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<MemberRatingSegmentOperator> for MemberRatingSegmentOperator
impl PartialEq<MemberRatingSegmentOperator> for MemberRatingSegmentOperator
sourcefn eq(&self, other: &MemberRatingSegmentOperator) -> bool
fn eq(&self, other: &MemberRatingSegmentOperator) -> bool
impl StructuralPartialEq for MemberRatingSegmentOperator
Auto Trait Implementations
impl RefUnwindSafe for MemberRatingSegmentOperator
impl Send for MemberRatingSegmentOperator
impl Sync for MemberRatingSegmentOperator
impl Unpin for MemberRatingSegmentOperator
impl UnwindSafe for MemberRatingSegmentOperator
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