Enum redis::NumericBehavior[][src]

pub enum NumericBehavior {
    NonNumeric,
    NumberIsInteger,
    NumberIsFloat,
}

Helper enum that is used in some situations to describe the behavior of arguments in a numeric context.

Variants

Trait Implementations

impl PartialEq for NumericBehavior
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for NumericBehavior
[src]

impl Clone for NumericBehavior
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NumericBehavior
[src]

Formats the value using the given formatter. Read more

impl Copy for NumericBehavior
[src]

Auto Trait Implementations