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

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

Command

Examples

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: &str = "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 fn new(
    name: &'a str,
    docs: &'a str,
    options: Option<&'a [&'a Opt<'a>]>
) -> Self
[src]

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

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]