Trait teloxide_core::payloads::EditForumTopicSetters
source · pub trait EditForumTopicSetters: HasPayload<Payload = EditForumTopic> + Sized {
// Provided methods
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§
sourcefn message_thread_id(self, value: i32) -> Self
fn message_thread_id(self, value: i32) -> Self
Setter for message_thread_id
field.
sourcefn icon_custom_emoji_id<T>(self, value: T) -> Selfwhere
T: Into<String>,
fn icon_custom_emoji_id<T>(self, value: T) -> Selfwhere T: Into<String>,
Setter for icon_custom_emoji_id
field.