pub trait CreateForumTopicSetters: HasPayload<Payload = CreateForumTopic> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<Recipient>
, { ... } fn name<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } fn icon_color(self, value: u32) -> Self { ... } fn icon_custom_emoji_id<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } }
Expand description

Setters for fields of CreateForumTopic

Provided Methods§

Setter for chat_id field.

Setter for name field.

Setter for icon_color field.

Setter for icon_custom_emoji_id field.

Implementors§