pub enum CmdOpt {
Short(char),
Long(String),
}Expand description
Command option types.
Variants§
Trait Implementations§
impl StructuralPartialEq for CmdOpt
Auto Trait Implementations§
impl Freeze for CmdOpt
impl RefUnwindSafe for CmdOpt
impl Send for CmdOpt
impl Sync for CmdOpt
impl Unpin for CmdOpt
impl UnwindSafe for CmdOpt
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