Function grammers_client::types::reply_markup::hide

source ·
pub fn hide() -> Hide
Expand description

Hide a previously-sent keyboard.

See the return type for further configuration options.

§Examples

use grammers_client::{InputMessage, reply_markup};

client.send_message(chat, InputMessage::text("Bot keyboards removed.").reply_markup(&reply_markup::hide())).await?;