pub trait SetStickerPositionInSetSetters: HasPayload<Payload = SetStickerPositionInSet> + Sized {
    // Provided methods
    fn sticker<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn position(self, value: u32) -> Self { ... }
}
Expand description

Setters for fields of SetStickerPositionInSet

Provided Methods§

source

fn sticker<T>(self, value: T) -> Selfwhere T: Into<String>,

Setter for sticker field.

source

fn position(self, value: u32) -> Self

Setter for position field.

Implementors§