#[repr(C)]pub struct CommandInfo {
pub cmd_name: *mut c_char,
pub cmd_tag: i32,
pub in_type: i32,
pub out_type: i32,
pub in_type_desc: *mut c_char,
pub out_type_desc: *mut c_char,
pub disp_level: DispLevel,
}
Fields§
§cmd_name: *mut c_char
§cmd_tag: i32
§in_type: i32
§out_type: i32
§in_type_desc: *mut c_char
§out_type_desc: *mut c_char
§disp_level: DispLevel
Trait Implementations§
Source§impl Clone for CommandInfo
impl Clone for CommandInfo
Source§fn clone(&self) -> CommandInfo
fn clone(&self) -> CommandInfo
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 CommandInfo
impl Debug for CommandInfo
impl Copy for CommandInfo
Auto Trait Implementations§
impl Freeze for CommandInfo
impl RefUnwindSafe for CommandInfo
impl !Send for CommandInfo
impl !Sync for CommandInfo
impl Unpin for CommandInfo
impl UnwindSafe for CommandInfo
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