Struct ntex_redis::cmd::commands::HSetCommand
source · pub struct HSetCommand(_);
Implementations§
source§impl HSetCommand
impl HSetCommand
sourcepub fn entry<K, V>(self, field: K, value: V) -> Selfwhere
BulkString: From<K> + From<V>,
pub fn entry<K, V>(self, field: K, value: V) -> Selfwhere BulkString: From<K> + From<V>,
Insert new entry to a redis hashmap
sourcepub fn add_entry<K, V>(&mut self, field: K, value: V)where
BulkString: From<K> + From<V>,
pub fn add_entry<K, V>(&mut self, field: K, value: V)where BulkString: From<K> + From<V>,
Insert new entry to a redis hashmap
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for HSetCommand
impl Send for HSetCommand
impl Sync for HSetCommand
impl Unpin for HSetCommand
impl !UnwindSafe for HSetCommand
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more