pub trait SetChatDescriptionSetters: HasPayload<Payload = SetChatDescription> + Sized {
    // Provided methods
    fn chat_id<T>(self, value: T) -> Self
       where T: Into<Recipient> { ... }
    fn description<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of SetChatDescription

Provided Methods§

source

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

Setter for chat_id field.

source

fn description<T>(self, value: T) -> Selfwhere T: Into<String>,

Setter for description field.

Implementors§