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: ThreadId) -> 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: ThreadId) -> Self
fn message_thread_id(self, value: ThreadId) -> Self
Setter for message_thread_id
field.
Sourcefn icon_custom_emoji_id<T>(self, value: T) -> Self
fn icon_custom_emoji_id<T>(self, value: T) -> Self
Setter for icon_custom_emoji_id
field.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.