Include filter_fn field in WalkOptions debug display

This commit is contained in:
Nick Groenen 2020-12-24 00:05:36 +01:00
parent e3201e58be
commit cc58ca01a5
No known key found for this signature in database
GPG Key ID: 4F0AD019928AE098
1 changed files with 5 additions and 0 deletions

View File

@ -33,10 +33,15 @@ pub struct WalkOptions<'a> {
impl<'a> fmt::Debug for WalkOptions<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let filter_fn_fmt = match self.filter_fn {
Some(_) => "<function set>",
None => "<not set>",
};
f.debug_struct("WalkOptions")
.field("ignore_filename", &self.ignore_filename)
.field("ignore_hidden", &self.ignore_hidden)
.field("honor_gitignore", &self.honor_gitignore)
.field("filter_fn", &filter_fn_fmt)
.finish()
}
}