pub type arg_cmd_info_t = arg_cmd_info;
Aliased Type§
struct arg_cmd_info_t {
pub name: [i8; 100],
pub description: [i8; 256],
pub proc_: Option<unsafe extern "C" fn(_: i32, _: *mut *mut i8, _: *mut _internal_arg_dstr) -> i32>,
}
Fields§
§name: [i8; 100]
§description: [i8; 256]
§proc_: Option<unsafe extern "C" fn(_: i32, _: *mut *mut i8, _: *mut _internal_arg_dstr) -> i32>
Trait Implementations
Source§impl Clone for arg_cmd_info
impl Clone for arg_cmd_info
Source§fn clone(&self) -> arg_cmd_info
fn clone(&self) -> arg_cmd_info
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more