[][src]Struct dia_args::docs::Cmd

pub struct Cmd<'a> { /* fields omitted */ }

Command

Examples

use std::borrow::Cow;
use dia_args::docs::Cmd;

// All these constants are convenient while working with Args.
// And you can also use them for Cmd.

const CMD_HELP: &str = "help";
const CMD_HELP_DOCS: Cow<str> = Cow::Borrowed("Prints help and exits.");

let _cmd = Cmd::new(CMD_HELP, CMD_HELP_DOCS, None);
// Here you can pass this command to Docs::new(...)

Methods

impl<'a> Cmd<'a>[src]

pub const fn new(
    name: &'a str,
    docs: Cow<'a, str>,
    options: Option<Vec<Cow<'a, Opt<'a>>>>
) -> Self
[src]

pub fn format(
    &self,
    cfg: &Cfg,
    i18n: &I18n,
    f: &mut Formatter
) -> Result<(), Error>
[src]

Trait Implementations

impl<'a> From<Cmd<'a>> for Cow<'a, Cmd<'a>>[src]

impl<'a> From<&'a Cmd<'a>> for Cow<'a, Cmd<'a>>[src]

impl<'a> Clone for Cmd<'a>[src]

Auto Trait Implementations

impl<'a> !Send for Cmd<'a>

impl<'a> !Sync for Cmd<'a>

impl<'a> Unpin for Cmd<'a>

impl<'a> !UnwindSafe for Cmd<'a>

impl<'a> !RefUnwindSafe for Cmd<'a>

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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]