#[non_exhaustive]pub struct Inline {
pub bot: Bot,
pub id: Id,
pub from: User,
pub location: Option<Location>,
pub query: String,
pub offset: String,
pub chat_kind: Option<ChatKind>,
}
Expand description
The context for inline
handlers.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bot: Bot
A bot for calling API without information inference.
id: Id
The ID of the query.
from: User
The user who sent the query.
location: Option<Location>
The location of the user, if enabled and allowed.
query: String
The query itself.
offset: String
The offset of the result to be returned.
chat_kind: Option<ChatKind>
The type of chat inline query was sent from.