use clap::Parser; #[derive(Parser)] #[command(author, version, about, long_about = None)] pub struct Args { /// Command to execute from ptrace #[arg(short, long)] pub command: Option, /// Attach the tracing to an existing process ID. We're using the `-p` short flag because /// strace uses it #[arg(short = 'p', long)] pub attach: Option, /// Show only defined sys calls. Multi values separated by comma `,` #[arg(short = 'f', long)] pub filter: Option, /// Write the output to a file instead of the standard output #[arg(long = "file")] pub file_to_print: Option, /// If defined, it hides the TUI #[arg(long = "no-tui", default_value_t = false)] pub no_tui: bool, }