#[non_exhaustive]
pub struct Sticker { pub id: StickerId, pub pack_id: Option<StickerPackId>, pub name: String, pub description: Option<String>, pub tags: Vec<String>, pub kind: StickerType, pub format_type: StickerFormatType, pub available: bool, pub guild_id: Option<GuildId>, pub user: Option<User>, pub sort_value: Option<u64>, }
Expand description

A sticker sent with a message.

Bots cannot send stickers.

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.
id: StickerId

The unique ID given to this sticker.

pack_id: Option<StickerPackId>

The unique ID of the pack the sticker is from.

name: String

The name of the sticker.

description: Option<String>

Description of the sticker

tags: Vec<String>

For guild stickers, the Discord name of a unicode emoji representing the sticker’s expression. For standard stickers, a list of related expressions.

kind: StickerType

The type of sticker.

format_type: StickerFormatType

The type of sticker format.

available: bool

Whether or not this guild sticker can be used, may be false due to loss of Server Boosts.

guild_id: Option<GuildId>

Id of the guild that owns this sticker.

user: Option<User>

User that uploaded the sticker. This will be None if the current user does not have the Manage Emojis and Stickers permission.

sort_value: Option<u64>

A sticker’s sort order within a pack.

Implementations

Available on crate feature model only.

Deletes a Sticker by Id from the guild.

Requires the Manage Emojis and Stickers permission.

Errors

Returns Error::Http if the current user lacks permission to delete the sticker.

Available on crate feature model only.

Edits a sticker, optionally setting its fields.

Requires the Manage Emojis and Stickers permission.

Examples

Rename a sticker:

guild.edit_sticker(&context, StickerId(7), |r| r.name("Bun bun meow"));
Errors

Returns Error::Http if the current user lacks permission.

Available on crate feature model only.

Retrieves the URL to the sticker image.

Note: This will only be None if the format_type is unknown.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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