Trait SetCustomEmojiStickerSetThumbnailSetters

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§