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
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.animated: bool
Whether the emoji is animated.
available: bool
Whether the emoji can be used. This may be false when the guild loses boosts, reducing the emoji limit.
id: EmojiId
The Id of the emoji.
name: String
The name of the emoji. It must be at least 2 characters long and can only contain alphanumeric characters and underscores.
managed: bool
Whether the emoji is managed via an Integration
service.
require_colons: bool
Whether the emoji name needs to be surrounded by colons in order to be used by the client.
roles: Vec<RoleId>
A list of Role
s that are allowed to use the emoji. If there are no
roles specified, then usage is unrestricted.
user: Option<User>
The user who created the emoji.
Implementations
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.
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.
Trait Implementations
Look up a Emoji
.
Requires the cache feature to be enabled.
The lookup strategy is as follows (in order):
- Lookup by ID.
- Lookup by extracting ID from the emoji.
- Lookup by name.
type Err = EmojiParseError
type Err = EmojiParseError
The associated error which can be returned from parsing.
Parses a string s
as a command parameter of this type.
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
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Emoji
impl UnwindSafe for Emoji
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more