[][src]Struct clap_nested::Command

pub struct Command<'a, T: ?Sized> { /* fields omitted */ }

Define a single-purpose command to be included in a Commander

Methods

impl<'a, T: ?Sized> Command<'a, T>[src]

pub fn new(name: impl Into<&'a str>) -> Self[src]

pub fn description(self, desc: impl Into<&'a str>) -> Self[src]

pub fn options(
    self,
    opts: impl for<'x, 'y> Fn(App<'x, 'y>) -> App<'x, 'y> + 'a
) -> Self
[src]

pub fn runner(
    self,
    run: impl Fn(&T, &ArgMatches) -> StdResult<(), ClapError> + 'a
) -> Self
[src]

Auto Trait Implementations

impl<'a, T> !Send for Command<'a, T>

impl<'a, T: ?Sized> Unpin for Command<'a, T>

impl<'a, T> !Sync for Command<'a, T>

impl<'a, T> !UnwindSafe for Command<'a, T>

impl<'a, T> !RefUnwindSafe for Command<'a, T>

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]