tusks-lib 3.2.0

Declarative CLI framework built on top of clap
Documentation
1
2
3
4
5
6
7
8
9
10
mod module;
mod arms;

use proc_macro2::TokenStream;

/// Code generation phase: builds the `pub fn handle_matches` function
/// with recursive match arms for command dispatch.
pub trait HandleMatchesCodegen {
    fn build_handle_matches(&self, is_tusks_root: bool) -> TokenStream;
}