[][src]Enum redis_streams::StreamMaxlen

pub enum StreamMaxlen {
    Equals(usize),
    Aprrox(usize),
}

Utility enum for passing MAXLEN [= or ~] [COUNT] arguments into StreamCommands. The enum value represents the count.

Variants

Equals(usize)Aprrox(usize)

Trait Implementations

impl PartialEq<StreamMaxlen> for StreamMaxlen[src]

impl Clone for StreamMaxlen[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for StreamMaxlen[src]

impl Copy for StreamMaxlen[src]

impl Debug for StreamMaxlen[src]

impl ToRedisArgs for StreamMaxlen[src]

fn to_redis_args(&self) -> Vec<Vec<u8>>[src]

This converts the value into a vector of bytes. Each item is a single argument. Most items generate a vector of a single item. Read more

fn describe_numeric_behavior(&self) -> NumericBehavior[src]

Returns an information about the contained value with regards to it's numeric behavior in a redis context. This is used in some high level concepts to switch between different implementations of redis functions (for instance INCR vs INCRBYFLOAT). Read more

fn is_single_arg(&self) -> bool[src]

Returns an indiciation if the value contained is exactly one argument. It returns false if it's zero or more than one. This is used in some high level functions to intelligently switch between GET and MGET variants. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T