useclap::Args;/// Arguments for the `verify` command.
#[derive(Debug, Clone, Args)]pubstructVerifyArgs{/// Identify all functions annotated with #[rapx::verify] and print each target, its unsafe callees, and their safety contracts.
#[arg(long)]pubprepare_targets:bool,
/// Number of extra SCC postfix repetitions allowed during path enumeration.
/// Default is 0 (postfix segments appear once each). Set to 1 to allow one extra repetition (two total occurrences), etc.
#[arg(long, default_value_t = 0)]puballow_pathseg_repeat:usize,
}