pub enum ArgSepSyntax {
Exactly(ArgSep),
OneOf(ArgSep, ArgSep),
End,
}
Expand description
Details to process an argument separator.
Variants§
Exactly(ArgSep)
The argument separator must exactly be the one give.
OneOf(ArgSep, ArgSep)
The argument separator may be any of the ones given.
End
The argument separator is the end of the call.
Trait Implementations§
Source§impl Clone for ArgSepSyntax
impl Clone for ArgSepSyntax
Source§fn clone(&self) -> ArgSepSyntax
fn clone(&self) -> ArgSepSyntax
Returns a copy 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 ArgSepSyntax
impl Debug for ArgSepSyntax
Source§impl PartialEq for ArgSepSyntax
impl PartialEq for ArgSepSyntax
impl Copy for ArgSepSyntax
impl StructuralPartialEq for ArgSepSyntax
Auto Trait Implementations§
impl Freeze for ArgSepSyntax
impl RefUnwindSafe for ArgSepSyntax
impl Send for ArgSepSyntax
impl Sync for ArgSepSyntax
impl Unpin for ArgSepSyntax
impl UnwindSafe for ArgSepSyntax
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