pub enum OptionKind {
Flag,
String,
Int,
Bool,
}Expand description
Declared shape of a user-defined command-line option. Register via
crate::Installer::option; read parsed results via
crate::Installer::get_option.
Variants§
Flag
Presence-only switch. --name → true, absent → false.
String
String value. --name value or --name=value.
Int
Signed integer value. --name 42 or --name=42.
Bool
Explicit boolean. --name true|false|1|0|yes|no|on|off.
Trait Implementations§
Source§impl Clone for OptionKind
impl Clone for OptionKind
Source§fn clone(&self) -> OptionKind
fn clone(&self) -> OptionKind
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 OptionKind
impl Debug for OptionKind
Source§impl PartialEq for OptionKind
impl PartialEq for OptionKind
impl Copy for OptionKind
impl Eq for OptionKind
impl StructuralPartialEq for OptionKind
Auto Trait Implementations§
impl Freeze for OptionKind
impl RefUnwindSafe for OptionKind
impl Send for OptionKind
impl Sync for OptionKind
impl Unpin for OptionKind
impl UnsafeUnpin for OptionKind
impl UnwindSafe for OptionKind
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