use std::path::PathBuf; use clap::Parser; #[derive(Debug, Parser)] pub struct Args { path: PathBuf, } impl Args { pub fn path(&self) -> &PathBuf { &self.path } }