Struct serenity::model::channel::Sticker [−][src]
#[non_exhaustive]pub struct Sticker {
pub id: StickerId,
pub pack_id: Option<StickerPackId>,
pub name: String,
pub description: String,
pub tags: Option<String>,
pub asset: String,
pub preview_asset: Option<String>,
pub format_type: StickerFormatType,
}
Expand description
A sticker sent with a message.
Bots currently can only receive messages with stickers, not send.
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.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: String
Description of the sticker
A comma-separated list of tags for the sticker.
asset: String
The sticker asset hash.
preview_asset: Option<String>
The sticker preview asset hash.
format_type: StickerFormatType
The type of sticker format.
Trait Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for Sticker
impl UnwindSafe for Sticker
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