pub trait GetStickerSetSetters: HasPayload<Payload = GetStickerSet> + Sized {
    // Provided method
    fn name<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of GetStickerSet

Provided Methods§

source

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

Setter for name field.

Implementors§

source§

impl<P> GetStickerSetSetters for Pwhere P: HasPayload<Payload = GetStickerSet>,