Struct tbot::types::inline_query::InlineQuery
source · #[non_exhaustive]pub struct InlineQuery {
pub id: Id,
pub from: User,
pub location: Option<Location>,
pub query: String,
pub offset: String,
pub chat_kind: Option<ChatKind>,
}
Expand description
Represents an InlineQuery
.
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.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.
Trait Implementations§
source§impl Clone for InlineQuery
impl Clone for InlineQuery
source§fn clone(&self) -> InlineQuery
fn clone(&self) -> InlineQuery
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InlineQuery
impl Debug for InlineQuery
source§impl<'de> Deserialize<'de> for InlineQuery
impl<'de> Deserialize<'de> for InlineQuery
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<InlineQuery> for InlineQuery
impl PartialEq<InlineQuery> for InlineQuery
source§fn eq(&self, other: &InlineQuery) -> bool
fn eq(&self, other: &InlineQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.