pub struct ChosenInlineResult {
pub result_id: String,
pub from: User,
pub location: Option<Location>,
pub inline_message_id: Option<String>,
pub query: String,
}Expand description
Represents a result of an inline query that was chosen by the user and sent to their chat partner.
Note: It is necessary to enable inline feedback via @BotFather in order to receive these objects in updates.
Fields§
§result_id: StringThe unique identifier for the result that was chosen
from: UserThe user that chose the result
location: Option<Location>Sender location, only for bots that require user location
inline_message_id: Option<String>Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message.
query: StringThe query that was used to obtain the result
Trait Implementations§
Source§impl Debug for ChosenInlineResult
impl Debug for ChosenInlineResult
Source§impl<'de> Deserialize<'de> for ChosenInlineResult
impl<'de> Deserialize<'de> for ChosenInlineResult
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 ChosenInlineResult
impl PartialEq for ChosenInlineResult
Source§impl Serialize for ChosenInlineResult
impl Serialize for ChosenInlineResult
impl StructuralPartialEq for ChosenInlineResult
Auto Trait Implementations§
impl Freeze for ChosenInlineResult
impl RefUnwindSafe for ChosenInlineResult
impl Send for ChosenInlineResult
impl Sync for ChosenInlineResult
impl Unpin for ChosenInlineResult
impl UnwindSafe for ChosenInlineResult
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