Updated rust and fixed checks.

Signed-off-by: Pavel Kirilin <win10@list.ru>
This commit is contained in:
2024-07-26 18:06:18 +02:00
parent 8881fb302a
commit 6c3cdffdc0
2 changed files with 3 additions and 7 deletions

View File

@ -45,10 +45,6 @@ pub struct MessageDirectionFilter(pub MessageDirection);
#[derive(Clone)]
pub struct TextFilter<'a>(pub &'a [&'a str], pub TextMatchMethod);
/// Filters text by predicate.
#[derive(Clone)]
pub struct ReverseTextFilter<'a>(pub &'a [&'a str], pub TextMatchMethod);
#[derive(Clone)]
pub struct NotFilter<T: Filter + Clone>(pub T);