[][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]

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

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

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

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

fn run(&self)[src]

Print help information for the given command

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> AsAny for T where
    T: Any
[src]

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

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

impl<T> Erased for T

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 = !

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.