Struct dia_args::docs::Opt [−][src]
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(...)
Implementations
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]
names: &'a [&'a str],
required: bool,
values: Option<Vec<Cow<'a, str>>>,
default: Option<&'a dyn Display>,
docs: Cow<'a, str>
) -> Self
pub fn format(
&self,
cfg: &Cfg,
i18n: &I18n<'_>,
f: &mut Formatter<'_>
) -> Result<(), Error>[src]
&self,
cfg: &Cfg,
i18n: &I18n<'_>,
f: &mut Formatter<'_>
) -> Result<(), Error>
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Opt<'a>
impl<'a> !Send for Opt<'a>
impl<'a> !Sync for Opt<'a>
impl<'a> Unpin for Opt<'a>
impl<'a> !UnwindSafe for Opt<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,