Enum redis::NumericBehavior
source · [−]pub enum NumericBehavior {
NonNumeric,
NumberIsInteger,
NumberIsFloat,
}
Expand description
Helper enum that is used in some situations to describe the behavior of arguments in a numeric context.
Variants
NonNumeric
This argument is not numeric.
NumberIsInteger
This argument is an integer.
NumberIsFloat
This argument is a floating point value.
Trait Implementations
sourceimpl Clone for NumericBehavior
impl Clone for NumericBehavior
sourcefn clone(&self) -> NumericBehavior
fn clone(&self) -> NumericBehavior
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 more
sourceimpl Debug for NumericBehavior
impl Debug for NumericBehavior
sourceimpl PartialEq<NumericBehavior> for NumericBehavior
impl PartialEq<NumericBehavior> for NumericBehavior
impl Copy for NumericBehavior
impl Eq for NumericBehavior
impl StructuralEq for NumericBehavior
impl StructuralPartialEq for NumericBehavior
Auto Trait Implementations
impl RefUnwindSafe for NumericBehavior
impl Send for NumericBehavior
impl Sync for NumericBehavior
impl Unpin for NumericBehavior
impl UnwindSafe for NumericBehavior
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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