pub enum EmojiGroup {
EmojiGroup(EmojiGroup),
Greeting(EmojiGroupGreeting),
Premium(EmojiGroupPremium),
}Expand description
Variants§
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 From<EmojiGroupGreeting> for EmojiGroup
impl From<EmojiGroupGreeting> for EmojiGroup
Source§fn from(x: EmojiGroupGreeting) -> Self
fn from(x: EmojiGroupGreeting) -> Self
Converts to this type from the input type.
Source§impl From<EmojiGroupPremium> for EmojiGroup
impl From<EmojiGroupPremium> for EmojiGroup
Source§fn from(x: EmojiGroupPremium) -> Self
fn from(x: EmojiGroupPremium) -> Self
Converts to this type from the input type.
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.
Source§impl TryFrom<EmojiGroup> for EmojiGroupGreeting
impl TryFrom<EmojiGroup> for EmojiGroupGreeting
Source§type Error = EmojiGroup
type Error = EmojiGroup
The type returned in the event of a conversion error.
Source§impl TryFrom<EmojiGroup> for EmojiGroupPremium
impl TryFrom<EmojiGroup> for EmojiGroupPremium
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