pub struct EmojiKeyword {
pub emoji: String,
pub keyword: String,
}
Expand description
Represents an emoji with its keyword
Fields§
§emoji: String
The emoji
keyword: String
The keyword
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 Default for EmojiKeyword
impl Default for EmojiKeyword
Source§fn default() -> EmojiKeyword
fn default() -> EmojiKeyword
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmojiKeyword
impl<'de> Deserialize<'de> for EmojiKeyword
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 EmojiKeyword
impl PartialEq for EmojiKeyword
Source§impl Serialize for EmojiKeyword
impl Serialize for EmojiKeyword
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 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