usestd::path::PathBuf;usestructopt::StructOpt;#[derive(StructOpt)]pubstructCli{/// Path to the file to be read
#[structopt(parse(from_os_str))]pubpath: PathBuf,
/// Display response headers
#[structopt(short, long)]pubverbose:bool,
/// If set, output won't be colored
#[structopt(long ="no-color")]pubno_color:bool,
}