#[repr(C)]pub struct RedisModuleCommandArg {
pub name: *const i8,
pub type_: u32,
pub key_spec_index: i32,
pub token: *const i8,
pub summary: *const i8,
pub since: *const i8,
pub flags: i32,
pub deprecated_since: *const i8,
pub subargs: *mut RedisModuleCommandArg,
pub display_text: *const i8,
}
Fields§
§name: *const i8
§type_: u32
§key_spec_index: i32
§token: *const i8
§summary: *const i8
§since: *const i8
§flags: i32
§deprecated_since: *const i8
§subargs: *mut RedisModuleCommandArg
§display_text: *const i8
Trait Implementations§
Source§impl Clone for RedisModuleCommandArg
impl Clone for RedisModuleCommandArg
Source§fn clone(&self) -> RedisModuleCommandArg
fn clone(&self) -> RedisModuleCommandArg
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RedisModuleCommandArg
impl Debug for RedisModuleCommandArg
impl Copy for RedisModuleCommandArg
Auto Trait Implementations§
impl Freeze for RedisModuleCommandArg
impl RefUnwindSafe for RedisModuleCommandArg
impl !Send for RedisModuleCommandArg
impl !Sync for RedisModuleCommandArg
impl Unpin for RedisModuleCommandArg
impl UnwindSafe for RedisModuleCommandArg
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