Crate structopt [] [src]

StructOpt trait definition

This crate defines the StructOpt trait. Alone, this crate is of little interest. See the structopt-derive crate to automatically generate an implementation of this trait.

If you want to disable all the clap features (colors, suggestions, ..) add default-features = false to the structopt dependency: toml [dependencies] structopt = { version = "0.1.0", default-features = false } structopt-derive = "0.1.0"

Modules

clap

Re-export of clap

Traits

StructOpt

A struct that is converted from command line arguments.