diff -r 7faedeb24eb2 -r 795b5b01cbd2 rust/rhg/src/commands/files.rs --- a/rust/rhg/src/commands/files.rs Thu Jan 12 10:28:56 2023 +0100 +++ b/rust/rhg/src/commands/files.rs Wed Jan 11 17:28:48 2023 +0100 @@ -2,7 +2,6 @@ use crate::ui::Ui; use crate::utils::path_utils::RelativizePaths; use clap::Arg; -use hg::errors::HgError; use hg::operations::list_rev_tracked_files; use hg::repo::Repo; use hg::utils::filter_map_results; @@ -85,11 +84,14 @@ } } -fn display_files<'a>( +fn display_files<'a, E>( ui: &Ui, repo: &Repo, - files: impl IntoIterator>, -) -> Result<(), CommandError> { + files: impl IntoIterator>, +) -> Result<(), CommandError> +where + CommandError: From, +{ let mut stdout = ui.stdout_buffer(); let mut any = false;