1 2 3 4 5 6 7 8 9
use std::path::PathBuf; #[derive(Clone, Debug)] pub struct InfoOpts { pub path: PathBuf, pub revision: Option<String>, // commit id or branch pub verbose: bool, pub output_as_json: bool, }