Struct serenity::model::guild::Emoji[][src]

#[non_exhaustive]
pub struct Emoji { pub animated: bool, pub available: bool, pub id: EmojiId, pub name: String, pub managed: bool, pub require_colons: bool, pub roles: Vec<RoleId>, pub user: Option<User>, }
Expand description

Represents a custom guild emoji, which can either be created using the API, or via an integration. Emojis created using the API only work within the guild it was created in.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
animated: bool
Expand description

Whether the emoji is animated.

available: bool
Expand description

Whether the emoji can be used. This may be false when the guild loses boosts, reducing the emoji limit.

id: EmojiId
Expand description

The Id of the emoji.

name: String
Expand description

The name of the emoji. It must be at least 2 characters long and can only contain alphanumeric characters and underscores.

managed: bool
Expand description

Whether the emoji is managed via an Integration service.

require_colons: bool
Expand description

Whether the emoji name needs to be surrounded by colons in order to be used by the client.

roles: Vec<RoleId>
Expand description

A list of Roles that are allowed to use the emoji. If there are no roles specified, then usage is unrestricted.

user: Option<User>
Expand description

The user who created the emoji.

Implementations

impl Emoji[src]

pub async fn delete<T: AsRef<Cache> + AsRef<Http>>(
    &self,
    cache_http: T
) -> Result<()>
[src]

Deletes the emoji. This method requires the cache to fetch the guild ID.

Note: The Manage Emojis permission is required.

Examples

Delete a given emoji:

// assuming emoji has been set already
match emoji.delete(&ctx).await {
    Ok(()) => println!("Emoji deleted."),
    Err(_) => println!("Could not delete emoji.")
}

Errors

Returns Error::Http if the current user lacks permission, or may return ModelError::ItemMissing if the emoji is not in the cache.

pub async fn edit<T: AsRef<Cache> + AsRef<Http>>(
    &mut self,
    cache_http: T,
    name: &str
) -> Result<()>
[src]

Edits the emoji by updating it with a new name. This method requires the cache to fetch the guild ID.

Note: The Manage Emojis permission is required.

Errors

Returns Error::Http if the current user lacks permission, or if an invalid name is given.

pub async fn find_guild_id(&self, cache: impl AsRef<Cache>) -> Option<GuildId>[src]

Finds the Guild that owns the emoji by looking through the Cache.

Examples

Print the guild id that owns this emoji:

// assuming emoji has been set already
if let Some(guild_id) = emoji.find_guild_id(&cache).await {
    println!("{} is owned by {}", emoji.name, guild_id);
}

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

Generates a URL to the emoji’s image.

Examples

Print the direct link to the given emoji:

// assuming emoji has been set already
println!("Direct link to emoji image: {}", emoji.url());

Trait Implementations

impl Clone for Emoji[src]

fn clone(&self) -> Emoji[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Emoji[src]

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

Formats the value using the given formatter. Read more

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

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Display for Emoji[src]

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

Formats the emoji into a string that will cause Discord clients to render the emoji.

This is in the format of either <:NAME:EMOJI_ID> for normal emojis, or <a:NAME:EMOJI_ID> for animated emojis.

impl From<&'_ Emoji> for Mention[src]

fn from(value: &Emoji) -> Self[src]

Performs the conversion.

impl<'a> From<&'a Emoji> for EmojiId[src]

fn from(emoji: &Emoji) -> EmojiId[src]

Gets the Id of an Emoji.

impl From<Emoji> for ReactionType[src]

fn from(emoji: Emoji) -> ReactionType[src]

Performs the conversion.

impl From<Emoji> for EmojiId[src]

fn from(emoji: Emoji) -> EmojiId[src]

Gets the Id of an Emoji.

impl Mentionable for Emoji[src]

fn mention(&self) -> Mention[src]

Creates a Mention that will be able to notify or create a link to the item. Read more

impl Serialize for Emoji[src]

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl RefUnwindSafe for Emoji

impl Send for Emoji

impl Sync for Emoji

impl Unpin for Emoji

impl UnwindSafe for Emoji

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

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

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V

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