[][src]Struct abscissa_core::Help

pub struct Help<C: Command> {
    pub opts: Vec<String>,
    // some fields omitted
}

Help command which prints usage information.

Generic over Command types.

Fields

opts: Vec<String>

Obtain help for a particular subcommand

Trait Implementations

impl<C> Command for Help<C> where
    C: Command
[src]

fn from_args<A: IntoIterator<Item = String>>(into_args: A) -> Self[src]

Parse command-line arguments from a string iterator

fn from_env_args() -> Self[src]

Parse command-line arguments from the environment

fn print_usage_and_exit(args: &[String]) -> ![src]

Print usage information and exit

fn subcommand_usage(_command: &str) -> Option<Usage>[src]

Get usage information for a particular subcommand (if available)

impl<C> Runnable for Help<C> where
    C: Command
[src]

fn run(&self)[src]

Print help information for the given command

impl<C: Default + Command> Default for Help<C>[src]

impl<C: Debug + Command> Debug for Help<C>[src]

impl<C> Options for Help<C> where
    C: Command
[src]

fn command_name(&self) -> Option<&'static str>[src]

Returns the name of a parsed command, if present. Read more

fn help_requested(&self) -> bool[src]

Returns whether the user supplied a "help" option to request usage information about the program or any contained subcommands. Read more

fn parse_args<S>(args: &[S], style: ParsingStyle) -> Result<Self, Error> where
    S: AsRef<str>, 
[src]

Parses arguments received from the command line. Read more

fn parse_args_or_exit(style: ParsingStyle) -> Self[src]

Parses arguments from the environment. Read more

fn parse_args_default_or_exit() -> Self[src]

Parses arguments from the environment, using the default parsing style. Read more

fn parse_args_default<S>(args: &[S]) -> Result<Self, Error> where
    S: AsRef<str>, 
[src]

Parses arguments received from the command line, using the default parsing style. Read more

Auto Trait Implementations

impl<C> Unpin for Help<C> where
    C: Unpin

impl<C> Sync for Help<C> where
    C: Sync

impl<C> Send for Help<C> where
    C: Send

impl<C> RefUnwindSafe for Help<C> where
    C: RefUnwindSafe

impl<C> UnwindSafe for Help<C> where
    C: UnwindSafe

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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> Borrow<T> for T where
    T: ?Sized
[src]

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

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