[][src]Trait structopt_toml::StructOptToml

pub trait StructOptToml {
    fn merge<'a>(from_toml: Self, from_args: Self, args: &ArgMatches) -> Self
    where
        Self: Sized,
        Self: StructOpt,
        Self: Deserialize<'a>
; fn from_clap_with_toml<'a>(
        toml_str: &'a str,
        args: &ArgMatches
    ) -> Result<Self, Error>
    where
        Self: Sized,
        Self: StructOpt,
        Self: Deserialize<'a>
, { ... }
fn from_args_with_toml<'a>(toml_str: &'a str) -> Result<Self, Error>
    where
        Self: Sized,
        Self: StructOpt,
        Self: Deserialize<'a>
, { ... }
fn from_iter_with_toml<'a, I>(
        toml_str: &'a str,
        iter: I
    ) -> Result<Self, Error>
    where
        Self: Sized,
        Self: StructOpt,
        Self: Deserialize<'a>,
        I: IntoIterator,
        I::Item: Into<OsString> + Clone
, { ... } }

Required methods

fn merge<'a>(from_toml: Self, from_args: Self, args: &ArgMatches) -> Self where
    Self: Sized,
    Self: StructOpt,
    Self: Deserialize<'a>, 

Merge the struct from TOML and the struct from args

Loading content...

Provided methods

fn from_clap_with_toml<'a>(
    toml_str: &'a str,
    args: &ArgMatches
) -> Result<Self, Error> where
    Self: Sized,
    Self: StructOpt,
    Self: Deserialize<'a>, 

Creates the struct from clap::ArgMatches with initial values from TOML.

fn from_args_with_toml<'a>(toml_str: &'a str) -> Result<Self, Error> where
    Self: Sized,
    Self: StructOpt,
    Self: Deserialize<'a>, 

Creates the struct from command line arguments with initial values from TOML.

fn from_iter_with_toml<'a, I>(toml_str: &'a str, iter: I) -> Result<Self, Error> where
    Self: Sized,
    Self: StructOpt,
    Self: Deserialize<'a>,
    I: IntoIterator,
    I::Item: Into<OsString> + Clone

Creates the struct from iterator with initial values from TOML.

Loading content...

Implementors

Loading content...