[][src]Struct entrance::CommandPrecursor

pub struct CommandPrecursor<Command> { /* fields omitted */ }

Helper struct for parsing command line arguments and returning Command.

Methods

impl<Opts, Args> CommandPrecursor<Command<Opts, Args>> where
    Opts: Options,
    Args: Arguments
[src]

pub fn parse<I: Iterator<Item = String>>(
    self,
    args: I
) -> Result<Command<Opts, Args>>
[src]

pub fn parse_options<I: Iterator<Item = String>>(
    self,
    args: I
) -> Result<OptionParsedCommand<Peekable<I>, Opts, Args>>
[src]

Trait Implementations

impl<Command: Debug> Debug for CommandPrecursor<Command>[src]

Auto Trait Implementations

impl<Command> Send for CommandPrecursor<Command> where
    Command: Send

impl<Command> Sync for CommandPrecursor<Command> where
    Command: Sync

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]