pub struct CommandLineOption {
pub condition: CommandLineOptionCondition,
pub long: String,
pub description: String,
pub explaination: String,
/* private fields */
}
Fields§
§condition: CommandLineOptionCondition
§long: String
§description: String
§explaination: String
Implementations§
Trait Implementations§
Source§impl Clone for CommandLineOption
impl Clone for CommandLineOption
Source§fn clone(&self) -> CommandLineOption
fn clone(&self) -> CommandLineOption
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 moreAuto Trait Implementations§
impl Freeze for CommandLineOption
impl RefUnwindSafe for CommandLineOption
impl Send for CommandLineOption
impl Sync for CommandLineOption
impl Unpin for CommandLineOption
impl UnwindSafe for CommandLineOption
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