#[repr(C)]pub struct CommandLineParameterInfo {
pub name: *mut i8,
pub type_: u32,
pub has_help: bool,
pub help: *mut i8,
pub has_q_default: bool,
pub q_default: *mut i8,
}Fields§
§name: *mut i8§type_: u32§has_help: bool§help: *mut i8§has_q_default: bool§q_default: *mut i8Trait 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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CommandLineParameterInfo
Auto Trait Implementations§
impl !Send for CommandLineParameterInfo
impl !Sync for CommandLineParameterInfo
impl Freeze for CommandLineParameterInfo
impl RefUnwindSafe for CommandLineParameterInfo
impl Unpin for CommandLineParameterInfo
impl UnsafeUnpin 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