xflags-macros 0.3.2

Private implementation details of xflags.
Documentation
1
2
3
4
5
6
7
8
9
10
11
xflags! {
    /// commands with different aliases
    cmd alias-cmd {
        /// And even an aliased subcommand!
        cmd sub s {
            /// Little sanity check to see if this still works as intended
            optional -c, --count count: usize
        }
        cmd this one has a lot of aliases {}
    }
}