pub trait MessageFilterExt<Out>: Sealed {
Show 16 methods fn filter_from(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_animation(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_audio(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_contact(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_document(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_location(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_photo(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_poll(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_sticker(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_text(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_reply_to_message(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_forward_from(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_new_chat_members(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_left_chat_member(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_pinned(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>; fn filter_dice(
    ) -> Handler<'static, DependencyMap, Out, DpHandlerDescription>;
}
Expand description

Filter methods for Message.

Required Methods§

Applies the Message::from filter.

Applies the Message::animation filter.

Applies the Message::audio filter.

Applies the Message::contact filter.

Applies the Message::document filter.

Applies the Message::location filter.

Applies the Message::photo filter.

Applies the Message::poll filter.

Applies the Message::sticker filter.

Applies the Message::text filter.

Applies the Message::reply_to_message filter.

Applies the Message::forward_from filter.

Applies the Message::new_chat_members filter.

Applies the Message::left_chat_member filter.

Applies the Message::pinned_message filter.

Applies the Message::dice filter.

Implementors§