pub struct EmojiGroup {
pub title: String,
pub icon_emoji_id: i64,
pub emoticons: Vec<String>,
}Expand description
Generated from:
emojiGroup#7a9abda9 title:string icon_emoji_id:long emoticons:Vector<string> = EmojiGroupFields§
§title: String§icon_emoji_id: i64§emoticons: Vec<String>Trait Implementations§
Source§impl Clone for EmojiGroup
impl Clone for EmojiGroup
Source§fn clone(&self) -> EmojiGroup
fn clone(&self) -> EmojiGroup
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 EmojiGroup
impl Debug for EmojiGroup
Source§impl Deserializable for EmojiGroup
impl Deserializable for EmojiGroup
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<EmojiGroup> for EmojiGroup
impl From<EmojiGroup> for EmojiGroup
Source§fn from(x: EmojiGroup) -> Self
fn from(x: EmojiGroup) -> Self
Converts to this type from the input type.
Source§impl Identifiable for EmojiGroup
impl Identifiable for EmojiGroup
Source§const CONSTRUCTOR_ID: u32 = 0x7a9abda9
const CONSTRUCTOR_ID: u32 = 0x7a9abda9
The constructor ID as specified in the TL schema.
Source§impl PartialEq for EmojiGroup
impl PartialEq for EmojiGroup
Source§impl Serializable for EmojiGroup
impl Serializable for EmojiGroup
Source§impl TryFrom<EmojiGroup> for EmojiGroup
impl TryFrom<EmojiGroup> for EmojiGroup
Source§type Error = EmojiGroup
type Error = EmojiGroup
The type returned in the event of a conversion error.
impl StructuralPartialEq for EmojiGroup
Auto Trait Implementations§
impl Freeze for EmojiGroup
impl RefUnwindSafe for EmojiGroup
impl Send for EmojiGroup
impl Sync for EmojiGroup
impl Unpin for EmojiGroup
impl UnsafeUnpin for EmojiGroup
impl UnwindSafe for EmojiGroup
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