Struct redis_module::Context [−][src]
pub struct Context { /* fields omitted */ }Context is a structure that’s designed to give us a high-level interface to
the Redis module API by abstracting away the raw C FFI calls.
Implementations
impl Context[src]
impl Context[src]pub fn new(ctx: *mut RedisModuleCtx) -> Self[src]
pub fn dummy() -> Self[src]
pub fn log(&self, level: LogLevel, message: &str)[src]
pub fn log_debug(&self, message: &str)[src]
pub fn log_notice(&self, message: &str)[src]
pub fn log_verbose(&self, message: &str)[src]
pub fn log_warning(&self, message: &str)[src]
pub fn auto_memory(&self)[src]
pub fn is_keys_position_request(&self) -> bool[src]
pub fn key_at_pos(&self, pos: i32)[src]
pub fn call(&self, command: &str, args: &[&str]) -> RedisResult[src]
pub fn reply(&self, r: RedisResult) -> Status[src]
pub fn open_key(&self, key: &str) -> RedisKey[src]
pub fn open_with_redis_string(
&self,
key: *mut RedisModuleString
) -> RedisKeyWritable[src]
&self,
key: *mut RedisModuleString
) -> RedisKeyWritable
pub fn open_key_writable(&self, key: &str) -> RedisKeyWritable[src]
pub fn replicate_verbatim(&self)[src]
pub fn create_string(&self, s: &str) -> RedisString[src]
pub fn get_raw(&self) -> *mut RedisModuleCtx[src]
Auto Trait Implementations
impl RefUnwindSafe for Context
impl RefUnwindSafe for Contextimpl UnwindSafe for Context
impl UnwindSafe for Context