Enum redis_driver::BitFieldSubCommand
source · [−]pub enum BitFieldSubCommand<E = &'static str, O = &'static str>where
E: Into<BulkString>,
O: Into<BulkString>,{
Get(BitFieldGetSubCommand<E, O>),
Set(E, O, u64),
IncrBy(E, O, i64),
Overflow(BitFieldOverflow),
}
Expand description
Sub-command for the bitfield command
Variants
Get(BitFieldGetSubCommand<E, O>)
Set(E, O, u64)
IncrBy(E, O, i64)
Overflow(BitFieldOverflow)
Implementations
sourceimpl<E, O> BitFieldSubCommand<E, O>where
E: Into<BulkString>,
O: Into<BulkString>,
impl<E, O> BitFieldSubCommand<E, O>where
E: Into<BulkString>,
O: Into<BulkString>,
Trait Implementations
sourceimpl<E, O> IntoArgs for BitFieldSubCommand<E, O>where
E: Into<BulkString>,
O: Into<BulkString>,
impl<E, O> IntoArgs for BitFieldSubCommand<E, O>where
E: Into<BulkString>,
O: Into<BulkString>,
fn into_args(self, args: CommandArgs) -> CommandArgs
fn num_args(&self) -> usize
Auto Trait Implementations
impl<E, O> RefUnwindSafe for BitFieldSubCommand<E, O>where
E: RefUnwindSafe,
O: RefUnwindSafe,
impl<E, O> Send for BitFieldSubCommand<E, O>where
E: Send,
O: Send,
impl<E, O> Sync for BitFieldSubCommand<E, O>where
E: Sync,
O: Sync,
impl<E, O> Unpin for BitFieldSubCommand<E, O>where
E: Unpin,
O: Unpin,
impl<E, O> UnwindSafe for BitFieldSubCommand<E, O>where
E: UnwindSafe,
O: UnwindSafe,
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