docs: comment reason for force_no_match

This commit is contained in:
Greg Heartsfield 2022-12-16 14:35:21 -06:00
parent 4d9012d94c
commit 2e9b1b6ba7

View File

@ -37,6 +37,9 @@ pub struct ReqFilter {
#[serde(skip)]
pub tags: Option<HashMap<char, HashSet<String>>>,
/// Force no matches due to malformed data
// we can't represent it in the req filter, so we don't want to
// erroneously match. This basically indicates the req tried to
// do something invalid.
pub force_no_match: bool,
}