logo
pub trait SetStickerPositionInSetSetters: HasPayload<Payload = SetStickerPositionInSet> + Sized {
    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

Setter for sticker field.

Setter for position field.

Implementors