Struct teloxide_core::payloads::SendChatAction
source · pub struct SendChatAction {
pub chat_id: Recipient,
pub action: ChatAction,
pub message_thread_id: Option<i32>,
}
Expand description
Use this method when you need to tell the user that something is happening on the bot’s side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns True on success.
Example: The ImageBot needs some time to process a request and upload the image. Instead of sending a text message along the lines of “Retrieving image, please wait…”, the bot may use sendChatAction with action = upload_photo. The user will see a “sending photo” status for the bot.
We only recommend using this method when a response from the bot will take a noticeable amount of time to arrive.
Fields§
§chat_id: Recipient
Unique identifier for the target chat or username of the target channel (in the format @channelusername
)
action: ChatAction
Type of action to broadcast. Choose one, depending on what the user is about to receive: typing for text messages, upload_photo for photos, record_video or upload_video for videos, record_audio or upload_audio for audio files, upload_document for general files, choose_sticker for stickers, find_location for location data, record_video_note or upload_video_note for video notes.
message_thread_id: Option<i32>
Unique identifier for the target message thread; supergroups only
Implementations§
source§impl SendChatAction
impl SendChatAction
pub fn new(chat_id: impl Into<Recipient>, action: ChatAction) -> Self
Trait Implementations§
source§impl Clone for SendChatAction
impl Clone for SendChatAction
source§impl Debug for SendChatAction
impl Debug for SendChatAction
source§impl Hash for SendChatAction
impl Hash for SendChatAction
source§impl PartialEq<SendChatAction> for SendChatAction
impl PartialEq<SendChatAction> for SendChatAction
source§fn eq(&self, other: &SendChatAction) -> bool
fn eq(&self, other: &SendChatAction) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Payload for SendChatAction
impl Payload for SendChatAction
source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
GetUpdates
with
big timeout
), the minimum timeout that should be used.source§impl Serialize for SendChatAction
impl Serialize for SendChatAction
impl Eq for SendChatAction
impl StructuralEq for SendChatAction
impl StructuralPartialEq for SendChatAction
Auto Trait Implementations§
impl RefUnwindSafe for SendChatAction
impl Send for SendChatAction
impl Sync for SendChatAction
impl Unpin for SendChatAction
impl UnwindSafe for SendChatAction
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.