Enum argonaut::ParseStatus [] [src]

pub enum ParseStatus<'a> {
    Parsed(ParsedArgs<'a>),
    Interrupted(OptName<'a>),
}

The result of a succesful parse. Either all the arguments are parsed and bound, or an interrupt flag is encountered and the handle of the corresponding argument is returned.

Variants

Parsed(ParsedArgs<'a>)Interrupted(OptName<'a>)

Trait Implementations

impl<'a> Debug for ParseStatus<'a>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.