Enum getopts::ParsingStyle
[−]
[src]
pub enum ParsingStyle {
FloatingFrees,
StopAtFirstFree,
}🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
What parsing style to use when parsing arguments.
Variants
FloatingFrees🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Flags and "free" arguments can be freely inter-mixed.
StopAtFirstFree🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
As soon as a "free" argument (i.e. non-flag) is encountered, stop considering any remaining arguments as flags.
Trait Implementations
impl Clone for ParsingStyle[src]
impl Clone for ParsingStylefn clone(&self) -> ParsingStyle[src]
fn clone(&self) -> ParsingStyleReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for ParsingStyle[src]
impl Copy for ParsingStyleimpl PartialEq for ParsingStyle[src]
impl PartialEq for ParsingStylefn eq(&self, __arg_0: &ParsingStyle) -> bool[src]
fn eq(&self, __arg_0: &ParsingStyle) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for ParsingStyle[src]
impl Eq for ParsingStyleAuto Trait Implementations
impl Send for ParsingStyle
impl Send for ParsingStyleimpl Sync for ParsingStyle
impl Sync for ParsingStyle