Struct teloxide_core::payloads::SendChatAction
source · [−]pub struct SendChatAction {
pub chat_id: Recipient,
pub action: ChatAction,
}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: RecipientUnique identifier for the target chat or username of the target channel (in the format @channelusername)
action: ChatActionType 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.
Implementations
sourceimpl SendChatAction
impl SendChatAction
pub fn new(chat_id: impl Into<Recipient>, action: ChatAction) -> Self
Trait Implementations
sourceimpl Clone for SendChatAction
impl Clone for SendChatAction
sourcefn clone(&self) -> SendChatActionⓘNotable traits for SendChatActionimpl Payload for SendChatAction type Output = True;
fn clone(&self) -> SendChatActionⓘNotable traits for SendChatActionimpl Payload for SendChatAction type Output = True;
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresourceimpl Debug for SendChatAction
impl Debug for SendChatAction
sourceimpl Hash for SendChatAction
impl Hash for SendChatAction
sourceimpl PartialEq<SendChatAction> for SendChatAction
impl PartialEq<SendChatAction> for SendChatAction
sourcefn eq(&self, other: &SendChatAction) -> bool
fn eq(&self, other: &SendChatAction) -> bool
sourceimpl Payload for SendChatAction
impl Payload for SendChatAction
sourcefn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
GetUpdates with
big timeout), the minimum timeout that should be used. Read moresourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.