Trait SetChatStickerSetSetters

Source
pub trait SetChatStickerSetSetters: HasPayload<Payload = SetChatStickerSet> + Sized {
    // Provided methods
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
    fn sticker_set_name<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of SetChatStickerSet

Provided Methods§

Source

fn chat_id<T>(self, value: T) -> Self
where T: Into<Recipient>,

Setter for chat_id field.

Source

fn sticker_set_name<T>(self, value: T) -> Self
where T: Into<String>,

Setter for sticker_set_name field.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§