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: String
Trait Implementations§
Source§impl Clone for InlineQuery
impl Clone for InlineQuery
Source§fn clone(&self) -> InlineQuery
fn clone(&self) -> InlineQuery
Returns a duplicate 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 for InlineQuery
impl PartialEq for InlineQuery
Source§impl PartialOrd for InlineQuery
impl PartialOrd for InlineQuery
impl StructuralPartialEq for InlineQuery
Auto Trait Implementations§
impl Freeze for InlineQuery
impl RefUnwindSafe for InlineQuery
impl Send for InlineQuery
impl Sync for InlineQuery
impl Unpin for InlineQuery
impl UnwindSafe for InlineQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more