[][src]Enum serenity::model::channel::ReactionType

pub enum ReactionType {
    Custom {
        animated: bool,
        id: EmojiId,
        name: Option<String>,
    },
    Unicode(String),
    // some variants omitted
}

The type of a Reaction sent.

Variants

Custom

A reaction with a Guilds custom Emoji, which is unique to the guild.

Fields of Custom

animated: bool

Whether the emoji is animated.

id: EmojiId

The Id of the custom Emoji.

name: Option<String>

The name of the custom emoji. This is primarily used for decoration and distinguishing the emoji client-side.

Unicode(String)

A reaction with a twemoji.

Implementations

impl ReactionType[src]

pub fn as_data(&self) -> String[src]

Creates a data-esque display of the type. This is not very useful for displaying, as the primary client can not render it, but can be useful for debugging.

Note: This is mainly for use internally. There is otherwise most likely little use for it.

Trait Implementations

impl Clone for ReactionType[src]

impl Debug for ReactionType[src]

impl<'de> Deserialize<'de> for ReactionType[src]

impl Display for ReactionType[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult[src]

Formats the reaction type, displaying the associated emoji in a way that clients can understand.

If the type is a custom emoji, then refer to the documentation for emoji's formatter on how this is displayed. Otherwise, if the type is a unicode, then the inner unicode is displayed.

impl Eq for ReactionType[src]

impl<'a> From<&'a str> for ReactionType[src]

pub fn from(unicode: &str) -> ReactionType[src]

Creates a ReactionType from a string slice.

Examples

Creating a ReactionType from a 🍎, modeling a similar API as the rest of the library:

use serenity::model::channel::ReactionType;

fn foo<R: Into<ReactionType>>(bar: R) {
    println!("{:?}", bar.into());
}

foo("🍎");

impl From<Emoji> for ReactionType[src]

impl From<EmojiId> for ReactionType[src]

impl From<EmojiIdentifier> for ReactionType[src]

impl From<String> for ReactionType[src]

impl From<char> for ReactionType[src]

pub fn from(ch: char) -> ReactionType[src]

Creates a ReactionType from a char.

Examples

Reacting to a message with an apple:

message.react(ctx, '🍎')?;

impl FromStr for ReactionType[src]

type Err = NeverFails

The associated error which can be returned from parsing.

impl Hash for ReactionType[src]

impl PartialEq<ReactionType> for ReactionType[src]

impl Serialize for ReactionType[src]

impl StructuralEq for ReactionType[src]

impl StructuralPartialEq for ReactionType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<F> FromStrAndCache for F where
    F: FromStr
[src]

type Err = <F as FromStr>::Err

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,