pub struct InlineQueryResults {
pub inline_query_id: i64,
pub button: Option<InlineQueryResultsButton>,
pub results: Vec<InlineQueryResult>,
pub next_offset: String,
}
Expand description
Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query
Fields§
§inline_query_id: i64
Unique identifier of the inline query
Button to be shown above inline query results; may be null
results: Vec<InlineQueryResult>
Results of the query
next_offset: String
The offset for the next request. If empty, then there are no more results
Trait Implementations§
Source§impl Clone for InlineQueryResults
impl Clone for InlineQueryResults
Source§fn clone(&self) -> InlineQueryResults
fn clone(&self) -> InlineQueryResults
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 InlineQueryResults
impl Debug for InlineQueryResults
Source§impl<'de> Deserialize<'de> for InlineQueryResults
impl<'de> Deserialize<'de> for InlineQueryResults
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 for InlineQueryResults
impl PartialEq for InlineQueryResults
Source§impl Serialize for InlineQueryResults
impl Serialize for InlineQueryResults
impl StructuralPartialEq for InlineQueryResults
Auto Trait Implementations§
impl Freeze for InlineQueryResults
impl RefUnwindSafe for InlineQueryResults
impl Send for InlineQueryResults
impl Sync for InlineQueryResults
impl Unpin for InlineQueryResults
impl UnwindSafe for InlineQueryResults
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