pub struct RedisModuleCommandInfo {
pub summary: Option<Cow<'static, CStr>>,
pub complexity: Option<Cow<'static, CStr>>,
pub since: Option<Cow<'static, CStr>>,
pub history: Vec<RedisModuleCommandHistoryEntry>,
pub tips: Option<Cow<'static, CStr>>,
pub arity: i32,
pub key_specs: Vec<RedisModuleCommandKeySpec>,
pub args: Vec<RedisModuleCommandArg>,
}
Fields§
§summary: Option<Cow<'static, CStr>>
§complexity: Option<Cow<'static, CStr>>
§since: Option<Cow<'static, CStr>>
§history: Vec<RedisModuleCommandHistoryEntry>
§tips: Option<Cow<'static, CStr>>
§arity: i32
§key_specs: Vec<RedisModuleCommandKeySpec>
§args: Vec<RedisModuleCommandArg>
Auto Trait Implementations§
impl Freeze for RedisModuleCommandInfo
impl RefUnwindSafe for RedisModuleCommandInfo
impl Send for RedisModuleCommandInfo
impl Sync for RedisModuleCommandInfo
impl Unpin for RedisModuleCommandInfo
impl UnwindSafe for RedisModuleCommandInfo
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