in src/main.rs [280:290]
fn new(accept_all: bool, hidden: bool, print_changed_files: bool) -> Fastmod {
Fastmod {
yes_to_all: accept_all,
hidden,
changed_files: if print_changed_files {
Some(Vec::new())
} else {
None
},
}
}