Enum gumdrop::ParsingStyle
[−]
[src]
pub enum ParsingStyle {
AllOptions,
StopAtFirstFree,
}Controls behavior of free arguments in Parser
Variants
AllOptionsProcess all option arguments that appear
StopAtFirstFreeAfter the first "free" argument is encountered, all remaining arguments will be considered "free" arguments.
Trait Implementations
impl Copy for ParsingStyle[src]
impl Clone for ParsingStyle[src]
fn clone(&self) -> ParsingStyle
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for ParsingStyle[src]
impl Eq for ParsingStyle[src]
impl PartialEq for ParsingStyle[src]
fn eq(&self, __arg_0: &ParsingStyle) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Default for ParsingStyle[src]
fn default() -> ParsingStyle
Returns the default parsing style, AllOptions.