Include filter_fn field in WalkOptions debug display
This commit is contained in:
parent
e3201e58be
commit
cc58ca01a5
@ -33,10 +33,15 @@ pub struct WalkOptions<'a> {
|
|||||||
|
|
||||||
impl<'a> fmt::Debug for WalkOptions<'a> {
|
impl<'a> fmt::Debug for WalkOptions<'a> {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
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")
|
f.debug_struct("WalkOptions")
|
||||||
.field("ignore_filename", &self.ignore_filename)
|
.field("ignore_filename", &self.ignore_filename)
|
||||||
.field("ignore_hidden", &self.ignore_hidden)
|
.field("ignore_hidden", &self.ignore_hidden)
|
||||||
.field("honor_gitignore", &self.honor_gitignore)
|
.field("honor_gitignore", &self.honor_gitignore)
|
||||||
|
.field("filter_fn", &filter_fn_fmt)
|
||||||
.finish()
|
.finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user