[][src]Struct tgbot::methods::SendChatAction

pub struct SendChatAction { /* fields omitted */ }

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)

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

Methods

impl SendChatAction[src]

pub fn new<C: Into<ChatId>>(chat_id: C, action: ChatAction) -> Self[src]

Creates a new SendChatAction

Arguments

  • chat_id - Unique identitifer for the target chat
  • action - Type of action to broadcast

Trait Implementations

impl Clone for SendChatAction[src]

impl Debug for SendChatAction[src]

impl Method for SendChatAction[src]

type Response = bool

Type of successful result in API response

impl Serialize for SendChatAction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.