structopt-toml is an default value loader from TOML for structopt.
Examples
The following example show a quick example of structopt-toml.
If derive(Deserialize), derive(StructOptToml) and serde(default) are added to the struct
with derive(StructOpt), some functions like from_args_with_toml can be used.
use Deserialize;
use StructOpt;
use StructOptToml;
The execution result of the above example is below.
$ ./example
a:10 // value from TOML string
b:0 // value from default_value of structopt
$ ./example -a 20
a:20 // value from command line argument
b:0