pub trait UploadStickerFileSetters: HasPayload<Payload = UploadStickerFile> + Sized {
    // Provided methods
    fn user_id(self, value: UserId) -> Self { ... }
    fn sticker(self, value: InputFile) -> Self { ... }
    fn sticker_format(self, value: StickerFormat) -> 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 sticker(self, value: InputFile) -> Self

Setter for sticker field.

source

fn sticker_format(self, value: StickerFormat) -> Self

Setter for sticker_format field.

Object Safety§

This trait is not object safe.

Implementors§