Trait CreateForumTopicSetters

Source
pub trait CreateForumTopicSetters: HasPayload<Payload = CreateForumTopic> + Sized {
    // Provided methods
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
    fn name<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn icon_color(self, value: u32) -> Self { ... }
    fn icon_custom_emoji_id<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of CreateForumTopic

Provided Methods§

Source

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

Setter for chat_id field.

Source

fn name<T>(self, value: T) -> Self
where T: Into<String>,

Setter for name field.

Source

fn icon_color(self, value: u32) -> Self

Setter for icon_color field.

Source

fn icon_custom_emoji_id<T>(self, value: T) -> Self
where T: Into<String>,

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.

Implementors§