pub enum NormalizedCommandItem {
Flag(NormalizedFlag),
Positional(PositionalArg),
}Variants§
Flag(NormalizedFlag)
Positional(PositionalArg)
Trait Implementations§
Source§impl Clone for NormalizedCommandItem
impl Clone for NormalizedCommandItem
Source§fn clone(&self) -> NormalizedCommandItem
fn clone(&self) -> NormalizedCommandItem
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 NormalizedCommandItem
impl Debug for NormalizedCommandItem
Source§impl PartialEq for NormalizedCommandItem
impl PartialEq for NormalizedCommandItem
impl Eq for NormalizedCommandItem
impl StructuralPartialEq for NormalizedCommandItem
Auto Trait Implementations§
impl Freeze for NormalizedCommandItem
impl RefUnwindSafe for NormalizedCommandItem
impl Send for NormalizedCommandItem
impl Sync for NormalizedCommandItem
impl Unpin for NormalizedCommandItem
impl UnsafeUnpin for NormalizedCommandItem
impl UnwindSafe for NormalizedCommandItem
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