pub trait SetStickerSetThumbnailSetters: HasPayload<Payload = SetStickerSetThumbnail> + Sized {
    // Provided methods
    fn name<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn user_id(self, value: UserId) -> Self { ... }
    fn thumbnail(self, value: InputFile) -> Self { ... }
}
Expand description

Setters for fields of SetStickerSetThumbnail

Provided Methods§

source

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

Setter for name field.

source

fn user_id(self, value: UserId) -> Self

Setter for user_id field.

source

fn thumbnail(self, value: InputFile) -> Self

Setter for thumbnail field.

Object Safety§

This trait is not object safe.

Implementors§