pub struct ChatEventCustomEmojiStickerSetChanged {
pub old_sticker_set_id: i64,
pub new_sticker_set_id: i64,
}
Expand description
The supergroup sticker set with allowed custom emoji was changed
Fields§
§old_sticker_set_id: i64
Previous identifier of the chat sticker set; 0 if none
new_sticker_set_id: i64
New identifier of the chat sticker set; 0 if none
Trait Implementations§
Source§impl Clone for ChatEventCustomEmojiStickerSetChanged
impl Clone for ChatEventCustomEmojiStickerSetChanged
Source§fn clone(&self) -> ChatEventCustomEmojiStickerSetChanged
fn clone(&self) -> ChatEventCustomEmojiStickerSetChanged
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 Default for ChatEventCustomEmojiStickerSetChanged
impl Default for ChatEventCustomEmojiStickerSetChanged
Source§fn default() -> ChatEventCustomEmojiStickerSetChanged
fn default() -> ChatEventCustomEmojiStickerSetChanged
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChatEventCustomEmojiStickerSetChanged
impl<'de> Deserialize<'de> for ChatEventCustomEmojiStickerSetChanged
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 ChatEventCustomEmojiStickerSetChanged
impl PartialEq for ChatEventCustomEmojiStickerSetChanged
Source§fn eq(&self, other: &ChatEventCustomEmojiStickerSetChanged) -> bool
fn eq(&self, other: &ChatEventCustomEmojiStickerSetChanged) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ChatEventCustomEmojiStickerSetChanged
Auto Trait Implementations§
impl Freeze for ChatEventCustomEmojiStickerSetChanged
impl RefUnwindSafe for ChatEventCustomEmojiStickerSetChanged
impl Send for ChatEventCustomEmojiStickerSetChanged
impl Sync for ChatEventCustomEmojiStickerSetChanged
impl Unpin for ChatEventCustomEmojiStickerSetChanged
impl UnwindSafe for ChatEventCustomEmojiStickerSetChanged
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