logo
pub trait SetStickerSetThumbSetters: HasPayload<Payload = SetStickerSetThumb> + Sized {
    fn name<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } fn user_id(self, value: UserId) -> Self { ... } fn thumb(self, value: InputFile) -> Self { ... } }
Expand description

Setters for fields of SetStickerSetThumb

Provided Methods

Setter for name field.

Setter for user_id field.

Setter for thumb field.

Implementors