pub trait UploadStickerFileSetters: HasPayload<Payload = UploadStickerFile> + Sized {
    // Provided methods
    fn user_id(self, value: UserId) -> Self { ... }
    fn png_sticker(self, value: InputFile) -> Self { ... }
}
Expand description

Setters for fields of UploadStickerFile

Provided Methods§

source

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

Setter for user_id field.

source

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

Setter for png_sticker field.

Implementors§