// Copyright (c) 2017 Guillaume Pinot <texitoi(a)texitoi.eu>
//
// This work is free. You can redistribute it and/or modify it under
// the terms of the Do What The Fuck You Want To Public License,
// Version 2, as published by Sam Hocevar. See the COPYING file for
// more details.
//! `StructOpt` trait definition
//!
//! This crate defines the `StructOpt` trait. Alone, this crate is of
//! little interest. See the `structopt-derive` crate to
//! automatically generate implementation of this trait.
extern crate clap as _clap;
/// Re-export of clap
/// A struct that is converted from command line arguments.