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

Setters for fields of ReopenForumTopic

Provided Methods§

Setter for chat_id field.

Setter for message_thread_id field.

Implementors§