pub trait SetCustomEmojiStickerSetThumbnailSetters: HasPayload<Payload = SetCustomEmojiStickerSetThumbnail> + Sized {
    // Provided methods
    fn name<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn custom_emoji_id<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of SetCustomEmojiStickerSetThumbnail

Provided Methods§

source

fn name<T>(self, value: T) -> Self
where T: Into<String>,

Setter for name field.

source

fn custom_emoji_id<T>(self, value: T) -> Self
where T: Into<String>,

Setter for custom_emoji_id field.

Object Safety§

This trait is not object safe.

Implementors§