#[non_exhaustive]pub struct InlineQueryResultsButton {
pub text: String,
pub web_app: Option<WebAppInfo>,
pub start_parameter: Option<String>,
}Expand description
A button shown above inline query results.
Exactly one of web_app or start_parameter should be set.
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.text: StringLabel text on the button.
web_app: Option<WebAppInfo>Description of the Web App launched when the button is pressed.
start_parameter: Option<String>Deep-linking parameter for the /start message sent when the button is pressed.
Trait Implementations§
Source§impl Clone for InlineQueryResultsButton
impl Clone for InlineQueryResultsButton
Source§fn clone(&self) -> InlineQueryResultsButton
fn clone(&self) -> InlineQueryResultsButton
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InlineQueryResultsButton
impl Debug for InlineQueryResultsButton
Source§impl Default for InlineQueryResultsButton
impl Default for InlineQueryResultsButton
Source§fn default() -> InlineQueryResultsButton
fn default() -> InlineQueryResultsButton
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InlineQueryResultsButton
impl<'de> Deserialize<'de> for InlineQueryResultsButton
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
Auto Trait Implementations§
impl Freeze for InlineQueryResultsButton
impl RefUnwindSafe for InlineQueryResultsButton
impl Send for InlineQueryResultsButton
impl Sync for InlineQueryResultsButton
impl Unpin for InlineQueryResultsButton
impl UnsafeUnpin for InlineQueryResultsButton
impl UnwindSafe for InlineQueryResultsButton
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