#[repr(C)]pub struct CommandLineParameterInfo {
pub name: *mut c_char,
pub type_: CommandLineParameterType,
pub has_help: bool,
pub help: *mut c_char,
pub has_q_default: bool,
pub q_default: *mut c_char,
}Fields§
§name: *mut c_char§type_: CommandLineParameterType§has_help: bool§help: *mut c_char§has_q_default: bool§q_default: *mut c_charTrait Implementations§
Source§impl Clone for CommandLineParameterInfo
impl Clone for CommandLineParameterInfo
Source§fn clone(&self) -> CommandLineParameterInfo
fn clone(&self) -> CommandLineParameterInfo
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 CommandLineParameterInfo
impl Debug for CommandLineParameterInfo
impl Copy for CommandLineParameterInfo
Auto Trait Implementations§
impl Freeze for CommandLineParameterInfo
impl RefUnwindSafe for CommandLineParameterInfo
impl !Send for CommandLineParameterInfo
impl !Sync for CommandLineParameterInfo
impl Unpin for CommandLineParameterInfo
impl UnwindSafe for CommandLineParameterInfo
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