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§
sourcefn description<T>(self, value: T) -> Selfwhere
T: Into<String>,
fn description<T>(self, value: T) -> Selfwhere T: Into<String>,
Setter for description
field.