pub enum EmojiKeyword {
EmojiKeyword(EmojiKeyword),
Deleted(EmojiKeywordDeleted),
}Expand description
Variants§
EmojiKeyword(EmojiKeyword)
Deleted(EmojiKeywordDeleted)
Trait Implementations§
Source§impl Clone for EmojiKeyword
impl Clone for EmojiKeyword
Source§fn clone(&self) -> EmojiKeyword
fn clone(&self) -> EmojiKeyword
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 EmojiKeyword
impl Debug for EmojiKeyword
Source§impl Deserializable for EmojiKeyword
impl Deserializable for EmojiKeyword
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<EmojiKeyword> for EmojiKeyword
impl From<EmojiKeyword> for EmojiKeyword
Source§fn from(x: EmojiKeyword) -> Self
fn from(x: EmojiKeyword) -> Self
Converts to this type from the input type.
Source§impl From<EmojiKeywordDeleted> for EmojiKeyword
impl From<EmojiKeywordDeleted> for EmojiKeyword
Source§fn from(x: EmojiKeywordDeleted) -> Self
fn from(x: EmojiKeywordDeleted) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EmojiKeyword
impl PartialEq for EmojiKeyword
Source§impl Serializable for EmojiKeyword
impl Serializable for EmojiKeyword
Source§impl TryFrom<EmojiKeyword> for EmojiKeyword
impl TryFrom<EmojiKeyword> for EmojiKeyword
Source§type Error = EmojiKeyword
type Error = EmojiKeyword
The type returned in the event of a conversion error.
Source§impl TryFrom<EmojiKeyword> for EmojiKeywordDeleted
impl TryFrom<EmojiKeyword> for EmojiKeywordDeleted
Source§type Error = EmojiKeyword
type Error = EmojiKeyword
The type returned in the event of a conversion error.
impl StructuralPartialEq for EmojiKeyword
Auto Trait Implementations§
impl Freeze for EmojiKeyword
impl RefUnwindSafe for EmojiKeyword
impl Send for EmojiKeyword
impl Sync for EmojiKeyword
impl Unpin for EmojiKeyword
impl UnsafeUnpin for EmojiKeyword
impl UnwindSafe for EmojiKeyword
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