pub enum ArgumentKind {
Mandatory,
Optional,
Star,
Group,
Delimited {
open: Delimiter,
close: Delimiter,
},
Paired {
open: Delimiter,
close: Delimiter,
},
}Expand description
Argument slot kind preserved from xparse-aware parsing.
Variants§
Mandatory
Standard mandatory argument
Optional
Standard optional bracket argument
Star
Boolean star slot
Group
Required braced-group form
Delimited
Delimited argument with a matched open / close pair
Paired
Paired-candidate argument that records the matched delimiters
Trait Implementations§
Source§impl Clone for ArgumentKind
impl Clone for ArgumentKind
Source§fn clone(&self) -> ArgumentKind
fn clone(&self) -> ArgumentKind
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 moreSource§impl Debug for ArgumentKind
impl Debug for ArgumentKind
impl Eq for ArgumentKind
Source§impl PartialEq for ArgumentKind
impl PartialEq for ArgumentKind
Source§fn eq(&self, other: &ArgumentKind) -> bool
fn eq(&self, other: &ArgumentKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArgumentKind
Auto Trait Implementations§
impl Freeze for ArgumentKind
impl RefUnwindSafe for ArgumentKind
impl Send for ArgumentKind
impl Sync for ArgumentKind
impl Unpin for ArgumentKind
impl UnsafeUnpin for ArgumentKind
impl UnwindSafe for ArgumentKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.