*Jump to [source](keyvalue-derive.rs)* **This requires enabling the `derive` feature flag.** ```console $ keyvalue-derive --help clap USAGE: keyvalue-derive[EXE] [OPTIONS] OPTIONS: -D -h, --help Print help information $ keyvalue-derive -D Foo=10 -D Alice=30 Args { defines: [("Foo", 10), ("Alice", 30)] } $ keyvalue-derive -D Foo ? failed error: Invalid value "Foo" for '-D ': invalid KEY=value: no `=` found in `Foo` For more information try --help $ keyvalue-derive -D Foo=Bar ? failed error: Invalid value "Foo=Bar" for '-D ': invalid digit found in string For more information try --help ```