1 2 3 4 5 6 7 8 9 10 11
//! Format command arguments use clap::Args; /// Format code #[derive(Args, Debug)] pub struct FormatArgs { /// Only check formatting without modifying files #[arg(long)] pub check: bool, }