pub trait SetChatMenuButtonSetters: HasPayload<Payload = SetChatMenuButton> + Sized {
    fn chat_id<T>(self, value: T) -> Self
    where
        T: Into<ChatId>
, { ... } fn menu_button(self, value: MenuButton) -> Self { ... } }
Expand description

Setters for fields of SetChatMenuButton

Provided Methods§

Setter for chat_id field.

Setter for menu_button field.

Implementors§