Struct telegram_bot_ars::types::InlineQuery
source · pub struct InlineQuery {
pub id: InlineQueryId,
pub from: User,
pub location: Option<Location>,
pub query: String,
pub offset: String,
}Fields§
§id: InlineQueryId§from: User§location: Option<Location>§query: String§offset: StringTrait 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<InlineQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<InlineQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Into<InlineQueryId> for InlineQuery
impl Into<InlineQueryId> for InlineQuery
source§fn into(self) -> InlineQueryId
fn into(self) -> InlineQueryId
Converts this type into the (usually inferred) input type.
source§impl PartialEq<InlineQuery> for InlineQuery
impl PartialEq<InlineQuery> for InlineQuery
source§fn eq(&self, other: &InlineQuery) -> bool
fn eq(&self, other: &InlineQuery) -> bool
source§impl PartialOrd<InlineQuery> for InlineQuery
impl PartialOrd<InlineQuery> for InlineQuery
source§fn partial_cmp(&self, other: &InlineQuery) -> Option<Ordering>
fn partial_cmp(&self, other: &InlineQuery) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more