Expand description
Inline query support — two directions:
§Receiving (bot side)
InlineQueryIter streams live inline queries arriving from users typing
@yourbot query. Backed by the update stream.
§Sending (user/client side — G-25)
InlineResultIter lets a user account call messages.GetInlineBotResults
and iterate the results, with a .send() helper to forward a chosen result.
Structs§
- Inline
Query Iter - Async iterator over incoming inline queries (bot side).
Created by
Client::iter_inline_queries. - Inline
Result - A single result returned by a bot for an inline query.
Obtained from
InlineResultIter::next. - Inline
Result Iter - Paginated iterator over results from a bot’s inline mode.
Created by
Client::inline_query.