pub struct InternalLinkTypeStickerSet {
pub sticker_set_name: String,
pub expect_custom_emoji: bool,
}
Expand description
The link is a link to a sticker set. Call searchStickerSet with the given sticker set name to process the link and show the sticker set. If the sticker set is found and the user wants to add it, then call changeStickerSet
Fields§
§sticker_set_name: String
Name of the sticker set
expect_custom_emoji: bool
True, if the sticker set is expected to contain custom emoji
Trait Implementations§
Source§impl Clone for InternalLinkTypeStickerSet
impl Clone for InternalLinkTypeStickerSet
Source§fn clone(&self) -> InternalLinkTypeStickerSet
fn clone(&self) -> InternalLinkTypeStickerSet
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 InternalLinkTypeStickerSet
impl Debug for InternalLinkTypeStickerSet
Source§impl Default for InternalLinkTypeStickerSet
impl Default for InternalLinkTypeStickerSet
Source§fn default() -> InternalLinkTypeStickerSet
fn default() -> InternalLinkTypeStickerSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InternalLinkTypeStickerSet
impl<'de> Deserialize<'de> for InternalLinkTypeStickerSet
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
impl StructuralPartialEq for InternalLinkTypeStickerSet
Auto Trait Implementations§
impl Freeze for InternalLinkTypeStickerSet
impl RefUnwindSafe for InternalLinkTypeStickerSet
impl Send for InternalLinkTypeStickerSet
impl Sync for InternalLinkTypeStickerSet
impl Unpin for InternalLinkTypeStickerSet
impl UnwindSafe for InternalLinkTypeStickerSet
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