diff --git a/crates/dav/src/xml/text_match.rs b/crates/dav/src/xml/text_match.rs index d79fdb3..7934964 100644 --- a/crates/dav/src/xml/text_match.rs +++ b/crates/dav/src/xml/text_match.rs @@ -70,6 +70,7 @@ pub enum MatchType { } impl MatchType { + #[must_use] pub fn match_text(&self, collation: &TextCollation, needle: &str, haystack: &str) -> bool { let haystack = collation.normalise(haystack); let needle = collation.normalise(needle);