[][src]Struct dia_args::docs::Opt

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

Option

Examples

use std::borrow::Cow;
use dia_args::docs::{self, Opt};

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

const ARG_PORT: &[&str] = &["-p", "--port"];
const ARG_PORT_VALUES: &[u16] = &[0, 64009];
const ARG_PORT_DEFAULT: u16 = ARG_PORT_VALUES[1];
const ARG_PORT_DOCS: Cow<str> = Cow::Borrowed("Port for server.");

let _opt = Opt::new(
    ARG_PORT, false,
    Some(docs::make_cow_strings(ARG_PORT_VALUES)), Some(&ARG_PORT_DEFAULT),
    ARG_PORT_DOCS,
);
// Here you can pass this option to Docs::new(...)

Methods

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

pub fn new(
    names: &'a [&'a str],
    required: bool,
    values: Option<Vec<Cow<'a, str>>>,
    default: Option<&'a dyn Display>,
    docs: Cow<'a, str>
) -> Self
[src]

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

Trait Implementations

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

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

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

Auto Trait Implementations

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

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

impl<'a> Unpin for Opt<'a>

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

impl<'a> !RefUnwindSafe for Opt<'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]