Struct redis_module::key::RedisKey [−][src]
pub struct RedisKey { /* fields omitted */ }
Implementations
Panics
Will panic if RedisModule_ModuleTypeGetValue
is missing in redismodule.h
Panics
Will panic if RedisModule_KeyType
is missing in redismodule.h
pub fn hash_get_multi<'a, A, B>(
&self,
fields: &'a [A]
) -> Result<Option<HMGetResult<'a, A, B>>, RedisError> where
A: Into<Vec<u8>> + Clone,
RedisString: Into<B>,
pub fn hash_get_multi<'a, A, B>(
&self,
fields: &'a [A]
) -> Result<Option<HMGetResult<'a, A, B>>, RedisError> where
A: Into<Vec<u8>> + Clone,
RedisString: Into<B>,
Returns the values associated with the specified fields in the hash stored at this key.
The result will be None
if the key does not exist.