pub trait EditForumTopicSetters: HasPayload<Payload = EditForumTopic> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<Recipient>
, { ... } fn message_thread_id(self, value: i32) -> Self { ... } fn name<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } fn icon_custom_emoji_id<T>(self, value: T) -> Self
    where
        T: Into<String>
, { ... } }
Expand description

Setters for fields of EditForumTopic

Provided Methods§

Setter for chat_id field.

Setter for message_thread_id field.

Setter for name field.

Setter for icon_custom_emoji_id field.

Implementors§