pub trait ReopenForumTopicSetters: HasPayload<Payload = ReopenForumTopic> + Sized {
    // Provided methods
    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§

source

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

Setter for chat_id field.

source

fn message_thread_id(self, value: i32) -> Self

Setter for message_thread_id field.

Implementors§