extargsparse_worker/const_value.rs
1//! variables for the COMMAND set sequence
2//! default is
3
4/// command input set ,this is the first
5pub const COMMAND_SET :i32 = 10;
6/// sub command json set
7pub const SUB_COMMAND_JSON_SET :i32 = 20;
8/// command json set
9pub const COMMAND_JSON_SET :i32 = 30;
10/// environment set like EXTARGSPARSE_JSON variable
11pub const ENVIRONMENT_SET :i32 = 40;
12/// sub command environment variable set
13pub const ENV_SUB_COMMAND_JSON_SET :i32 = 50;
14/// command environment variable set
15pub const ENV_COMMAND_JSON_SET :i32 = 60;
16/// default value at the last
17pub const DEFAULT_SET :i32 = 70;