Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
crate_description in clap - Rust
[go: Go Back, main page]

Macro crate_description

Source
macro_rules! crate_description {
    () => { ... };
}
Expand description

Allows you to pull the description from your Cargo.toml at compile time.

ยงExamples

let m = Command::new("cmd")
            .about(crate_description!())
            .get_matches();