pub struct InlineQueryResultCachedSticker {
pub id: String,
pub sticker_file_id: String,
pub reply_markup: Option<InlineKeyboardMarkup>,
pub input_message_content: Option<InputMessageContent>,
}Fields§
§id: StringUnique identifier for this result, 1-64 Bytes
sticker_file_id: StringA valid file identifier of the sticker
reply_markup: Option<InlineKeyboardMarkup>Inline keyboard attached to the message
input_message_content: Option<InputMessageContent>Content of the message to be sent
Trait Implementations§
Source§impl From<InlineQueryResultCachedSticker> for InlineQueryResult
impl From<InlineQueryResultCachedSticker> for InlineQueryResult
Source§fn from(sticker: InlineQueryResultCachedSticker) -> InlineQueryResult
fn from(sticker: InlineQueryResultCachedSticker) -> InlineQueryResult
Converts to this type from the input type.
Source§impl Serialize for InlineQueryResultCachedSticker
impl Serialize for InlineQueryResultCachedSticker
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for InlineQueryResultCachedSticker
impl RefUnwindSafe for InlineQueryResultCachedSticker
impl Send for InlineQueryResultCachedSticker
impl Sync for InlineQueryResultCachedSticker
impl Unpin for InlineQueryResultCachedSticker
impl UnwindSafe for InlineQueryResultCachedSticker
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