pub enum StringCommand<S, V> {
    Set(Arity<(S, V)>, Option<Duration>, Insertion),
    Get(Arity<S>),
    Len(S),
    Decr(S, usize),
    Incr(S, i64),
    Append(S, V),
}
Expand description

The StringCommand enum represents the most basic, key-value commands that redis offers; top-level keys with values being either strings or numbers.

Variants§

§

Set(Arity<(S, V)>, Option<Duration>, Insertion)

Sets the value of a key.

§

Get(Arity<S>)

Returns the value of a key(s).

§

Len(S)

Returns the length of a key.

§

Decr(S, usize)

Decrements the value stored at a key.

§

Incr(S, i64)

Increments the value stored at a key.

§

Append(S, V)

Appends a value to a string.

Trait Implementations§

source§

impl<S: Debug, V: Debug> Debug for StringCommand<S, V>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S, V> Display for StringCommand<S, V>where S: Display, V: Display,

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<S, V> RefUnwindSafe for StringCommand<S, V>where S: RefUnwindSafe, V: RefUnwindSafe,

§

impl<S, V> Send for StringCommand<S, V>where S: Send, V: Send,

§

impl<S, V> Sync for StringCommand<S, V>where S: Sync, V: Sync,

§

impl<S, V> Unpin for StringCommand<S, V>where S: Unpin, V: Unpin,

§

impl<S, V> UnwindSafe for StringCommand<S, V>where S: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.