1 2 3 4 5 6 7 8 9 10 11
//! The short name here is a string, not a character. use structconf::StructConf; #[derive(StructConf)] struct Config { #[conf(short = "more_than_a_character")] pub value: bool, } fn main() {}