added a filter for messages without user information

This commit is contained in:
2023-08-12 17:37:27 +03:00
parent df7a78a1c7
commit 072596a797
3 changed files with 55 additions and 1 deletions

View File

@ -70,7 +70,7 @@ type DynHanlder<T> = Box<
+ Send,
>;
pub struct Handler<T> {
pub struct Handler<T: ?Sized> {
pub func: Option<DynHanlder<T>>,
pub previous: MessageIds,