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

Setters for fields of EditGeneralForumTopic

Provided Methods§

Setter for chat_id field.

Setter for name field.

Implementors§