Struct discord_flows::model::ActivityEmoji
source · pub struct ActivityEmoji {
pub name: String,
pub id: Option<EmojiId>,
pub animated: Option<bool>,
}Expand description
Representation of an emoji used in a custom status
Fields§
§name: StringThe name of the emoji.
id: Option<EmojiId>The id of the emoji.
animated: Option<bool>Whether this emoji is animated.
Trait Implementations§
source§impl Clone for ActivityEmoji
impl Clone for ActivityEmoji
source§fn clone(&self) -> ActivityEmoji
fn clone(&self) -> ActivityEmoji
Returns a copy 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 ActivityEmoji
impl Debug for ActivityEmoji
source§impl<'de> Deserialize<'de> for ActivityEmoji
impl<'de> Deserialize<'de> for ActivityEmoji
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ActivityEmoji, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ActivityEmoji, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for ActivityEmoji
impl Serialize for ActivityEmoji
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ActivityEmoji
impl Send for ActivityEmoji
impl Sync for ActivityEmoji
impl Unpin for ActivityEmoji
impl UnwindSafe for ActivityEmoji
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