Struct telexide_fork::api::APIClient [−][src]
pub struct APIClient { /* fields omitted */ }Expand description
A default implementation of the API trait.
It requires your bot token in order to interact with the telegram API and
also allows you to configure your own hyper::Client for it to use.
Using the default APIClient is as easy as:
use telexide_fork::api::{APIClient, API, types::SendMessage};
let token = String::from("test token");
let message = SendMessage::new(chat_id, "hi!");
let client = APIClient::new_default(&token);
client.send_message(message).await;In most cases you would want to get updates though and the Client is
best suited for that, as it allows for easier handling of those updates
Implementations
pub fn new<T: ToString>(
hyper_client: Option<Client<HttpsConnector<HttpConnector>>>,
token: &T
) -> Self
pub fn new<T: ToString>(
hyper_client: Option<Client<HttpsConnector<HttpConnector>>>,
token: &T
) -> Self
Creates a new APIClient with the provided token and hyper client (if
it is Some).
Creates a new APIClient with the provided token and the default hyper
client.
Sends a request to the provided APIEndpoint with the data provided
(does not support files)
gets a reference to the underlying hyper client, for example so you can make custom api requests
Trait Implementations
executes a get request to the given telegram api endpoint
executes a post request to the given telegram api endpoint
executes a post request to the given api endpoint and uploads the given files Read more
Use this method to log out from the cloud Bot API server before launching the bot locally. You must log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you will not be able to log in again using the same token for 10 minutes. Returns True on success. Read more
Use this method to close the bot instance before moving it from one local server to another. You need to delete the webhook before calling this method to ensure that the bot isn’t launched again after server restart. The method will return error 429 in the first 10 minutes after the bot is launched. Read more
fn get_updates<'life0, 'async_trait>(
&'life0 self,
data: GetUpdates
) -> Pin<Box<dyn Future<Output = Result<Vec<Update>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_updates<'life0, 'async_trait>(
&'life0 self,
data: GetUpdates
) -> Pin<Box<dyn Future<Output = Result<Vec<Update>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
(WARNING: this method should not be used by the library user
themselves as this gets handled by the Client object,
to handle an update event, please subscribe to those using
subscribe_handler) Use this method to receive incoming updates
using long polling. A Vec<Update> is returned. Read more
fn set_webhook<'life0, 'async_trait>(
&'life0 self,
data: SetWebhook
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_webhook<'life0, 'async_trait>(
&'life0 self,
data: SetWebhook
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns True on success. Read more
fn delete_webhook<'life0, 'async_trait>(
&'life0 self,
data: DeleteWebhook
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn delete_webhook<'life0, 'async_trait>(
&'life0 self,
data: DeleteWebhook
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to remove webhook integration if you decide to switch back to using API::get_updates. Returns True on success. Read more
fn get_webhook_info<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<WebhookInfo>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_webhook_info<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<WebhookInfo>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get current webhook status. On success, returns a WebhookInfo object. If the bot is using API::get_updates, will return a WebhookInfo object with the url field empty. Read more
fn send_message<'life0, 'async_trait>(
&'life0 self,
data: SendMessage
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_message<'life0, 'async_trait>(
&'life0 self,
data: SendMessage
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_my_commands<'life0, 'async_trait>(
&'life0 self,
data: SetMyCommands
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_my_commands<'life0, 'async_trait>(
&'life0 self,
data: SetMyCommands
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to change the list of the bot’s commands. Returns True on success. Read more
fn get_my_commands<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<BotCommand>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_my_commands<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<BotCommand>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get the current list of the bot’s commands. Requires
no parameters. Returns a Vec<BotCommand> on success. Read more
fn forward_message<'life0, 'async_trait>(
&'life0 self,
data: ForwardMessage
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn forward_message<'life0, 'async_trait>(
&'life0 self,
data: ForwardMessage
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn copy_message<'life0, 'async_trait>(
&'life0 self,
data: CopyMessage
) -> Pin<Box<dyn Future<Output = Result<MessageId>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn copy_message<'life0, 'async_trait>(
&'life0 self,
data: CopyMessage
) -> Pin<Box<dyn Future<Output = Result<MessageId>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to copy messages of any kind. The method is analogous to
the method forward_message, but the copied message doesn’t have
a link to the original message. Returns the MessageId of the
sent message on success. Read more
Use this method to send audio files, if you want Telegram clients to
display them in the music player. Your audio must be in the .MP3 or
.M4A format. On success, the sent Message is returned.
Bots can currently send audio files of up to 50 MB in size, this limit
may be changed in the future. Read more
fn send_document<'life0, 'async_trait>(
&'life0 self,
data: SendDocument
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_document<'life0, 'async_trait>(
&'life0 self,
data: SendDocument
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_animation<'life0, 'async_trait>(
&'life0 self,
data: SendAnimation
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_animation<'life0, 'async_trait>(
&'life0 self,
data: SendAnimation
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to send audio files, if you want Telegram clients to
display the file as a playable voice message. For this to work, your
audio must be in an .OGG file encoded with OPUS (other formats may be
sent as Audio or Document). On success, the sent Message
is returned. Bots can currently send voice messages of up to 50 MB in
size, this limit may be changed in the future. Read more
fn send_video_note<'life0, 'async_trait>(
&'life0 self,
data: SendVideoNote
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_video_note<'life0, 'async_trait>(
&'life0 self,
data: SendVideoNote
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_media_group<'life0, 'async_trait>(
&'life0 self,
data: SendMediaGroup
) -> Pin<Box<dyn Future<Output = Result<Vec<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_media_group<'life0, 'async_trait>(
&'life0 self,
data: SendMediaGroup
) -> Pin<Box<dyn Future<Output = Result<Vec<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to send a group of photos or videos as an album.
On success, a Vec<Message> is returned. Read more
fn send_location<'life0, 'async_trait>(
&'life0 self,
data: SendLocation
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_location<'life0, 'async_trait>(
&'life0 self,
data: SendLocation
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_contact<'life0, 'async_trait>(
&'life0 self,
data: SendContact
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_contact<'life0, 'async_trait>(
&'life0 self,
data: SendContact
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_chat_action<'life0, 'async_trait>(
&'life0 self,
data: SendChatAction
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_chat_action<'life0, 'async_trait>(
&'life0 self,
data: SendChatAction
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
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. Read more
fn edit_message_text<'life0, 'async_trait>(
&'life0 self,
data: EditMessageText
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_message_text<'life0, 'async_trait>(
&'life0 self,
data: EditMessageText
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_message_caption<'life0, 'async_trait>(
&'life0 self,
data: EditMessageCaption
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_message_caption<'life0, 'async_trait>(
&'life0 self,
data: EditMessageCaption
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_message_media<'life0, 'async_trait>(
&'life0 self,
data: EditMessageMedia
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_message_media<'life0, 'async_trait>(
&'life0 self,
data: EditMessageMedia
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to edit animation, audio, document, photo, or video
messages. If a message is a part of a message album, then it can be
edited only to a photo or a video. Otherwise, message type can be
changed arbitrarily. When inline message is edited, new file can’t be
uploaded. Use previously uploaded file via its file_id or specify a
URL. On success, if the edited message was sent by the bot, the
edited Message is returned, otherwise True is returned. Read more
fn edit_message_reply_markup<'life0, 'async_trait>(
&'life0 self,
data: EditMessageReplyMarkup
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_message_reply_markup<'life0, 'async_trait>(
&'life0 self,
data: EditMessageReplyMarkup
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn delete_message<'life0, 'async_trait>(
&'life0 self,
data: DeleteMessage
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn delete_message<'life0, 'async_trait>(
&'life0 self,
data: DeleteMessage
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to delete a message, including service messages, with the following limitations: Read more
fn edit_message_live_location<'life0, 'async_trait>(
&'life0 self,
data: EditMessageLiveLocation
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_message_live_location<'life0, 'async_trait>(
&'life0 self,
data: EditMessageLiveLocation
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn stop_message_live_location<'life0, 'async_trait>(
&'life0 self,
data: StopMessageLiveLocation
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn stop_message_live_location<'life0, 'async_trait>(
&'life0 self,
data: StopMessageLiveLocation
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_user_profile_photos<'life0, 'async_trait>(
&'life0 self,
data: GetUserProfilePhotos
) -> Pin<Box<dyn Future<Output = Result<UserProfilePhotos>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_user_profile_photos<'life0, 'async_trait>(
&'life0 self,
data: GetUserProfilePhotos
) -> Pin<Box<dyn Future<Output = Result<UserProfilePhotos>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get a list of profile pictures for a user. Returns a
UserProfilePhotos object. Read more
Use this method to get basic info about a file and prepare it for
downloading. For the moment, bots can download files of up to 20MB
in size. On success, a File object is returned. The file can then be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>, where <file_path> is taken from the response.
It is guaranteed that the link will be valid for at least 1 hour. When
the link expires, a new one can be requested by calling
API::get_file again. Read more
fn unban_chat_member<'life0, 'async_trait>(
&'life0 self,
data: UnbanChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn unban_chat_member<'life0, 'async_trait>(
&'life0 self,
data: UnbanChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to unban a previously kicked user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. Returns True on success. Read more
fn kick_chat_member<'life0, 'async_trait>(
&'life0 self,
data: KickChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn kick_chat_member<'life0, 'async_trait>(
&'life0 self,
data: KickChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to kick a user from a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns True on success. Read more
fn restrict_chat_member<'life0, 'async_trait>(
&'life0 self,
data: RestrictChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn restrict_chat_member<'life0, 'async_trait>(
&'life0 self,
data: RestrictChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to restrict a user in a supergroup. The bot must be an administrator in the supergroup for this to work and must have the appropriate admin rights. Pass True for all permissions to lift restrictions from a user. Returns True on success. Read more
fn promote_chat_member<'life0, 'async_trait>(
&'life0 self,
data: PromoteChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn promote_chat_member<'life0, 'async_trait>(
&'life0 self,
data: PromoteChatMember
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to promote or demote a user in a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Pass False for all boolean parameters to demote a user. Returns True on success. Read more
fn set_chat_administrator_custom_title<'life0, 'async_trait>(
&'life0 self,
data: SetChatAdministratorCustomTitle
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_chat_administrator_custom_title<'life0, 'async_trait>(
&'life0 self,
data: SetChatAdministratorCustomTitle
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns True on success. Read more
fn set_chat_permissions<'life0, 'async_trait>(
&'life0 self,
data: SetChatPermissions
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_chat_permissions<'life0, 'async_trait>(
&'life0 self,
data: SetChatPermissions
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to set default chat permissions for all members. The bot must be an administrator in the group or a supergroup for this to work and must have the can_restrict_members admin rights. Returns True on success. Read more
fn export_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: ExportChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn export_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: ExportChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to generate a new invite link for a chat; any previously generated link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns the new invite link as String on success. Read more
fn create_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: CreateChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<ChatInviteLink>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn create_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: CreateChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<ChatInviteLink>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to create an additional invite link for a chat. The bot
must be an administrator in the chat for this to work and must have
the appropriate admin rights. The link can be revoked using the
method API::revoke_chat_invite_link. Returns the new invite link as
ChatInviteLink object. Read more
fn edit_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: EditChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<ChatInviteLink>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn edit_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: EditChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<ChatInviteLink>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to edit a non-primary invite link created by the bot.
The bot must be an administrator in the chat for this to work and
must have the appropriate admin rights. Returns the edited invite
link as a ChatInviteLink object. Read more
fn revoke_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: RevokeChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<ChatInviteLink>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn revoke_chat_invite_link<'life0, 'async_trait>(
&'life0 self,
data: RevokeChatInviteLink
) -> Pin<Box<dyn Future<Output = Result<ChatInviteLink>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to revoke an invite link created by the bot. If the
primary link is revoked, a new link is automatically generated. The
bot must be an administrator in the chat for this to work and must
have the appropriate admin rights. Returns the revoked invite link
as ChatInviteLink object. Read more
fn set_chat_photo<'life0, 'async_trait>(
&'life0 self,
data: SetChatPhoto
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_chat_photo<'life0, 'async_trait>(
&'life0 self,
data: SetChatPhoto
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to set a new profile photo for the chat. Photos can’t be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns True on success. Read more
fn delete_chat_photo<'life0, 'async_trait>(
&'life0 self,
data: DeleteChatPhoto
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn delete_chat_photo<'life0, 'async_trait>(
&'life0 self,
data: DeleteChatPhoto
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to delete a chat photo. Photos can’t be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns True on success. Read more
fn set_chat_title<'life0, 'async_trait>(
&'life0 self,
data: SetChatTitle
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_chat_title<'life0, 'async_trait>(
&'life0 self,
data: SetChatTitle
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to change the title of a chat. Titles can’t be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns True on success. Read more
fn set_chat_description<'life0, 'async_trait>(
&'life0 self,
data: SetChatDescription
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_chat_description<'life0, 'async_trait>(
&'life0 self,
data: SetChatDescription
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to change the description of a group, a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns True on success. Read more
fn pin_chat_message<'life0, 'async_trait>(
&'life0 self,
data: PinChatMessage
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn pin_chat_message<'life0, 'async_trait>(
&'life0 self,
data: PinChatMessage
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to pin a message in a group, a supergroup, or a channel. The bot must be an administrator in the chat for this to work and must have the ‘can_pin_messages’ admin right in the supergroup or ‘can_edit_messages’ admin right in the channel. Returns True on success. Read more
fn unpin_chat_message<'life0, 'async_trait>(
&'life0 self,
data: UnpinChatMessage
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn unpin_chat_message<'life0, 'async_trait>(
&'life0 self,
data: UnpinChatMessage
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to remove a message from the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the ‘can_pin_messages’ admin right in a supergroup or ‘can_edit_messages’ admin right in a channel. Returns True on success. Read more
fn unpin_all_chat_messages<'life0, 'async_trait>(
&'life0 self,
data: UnpinAllChatMessages
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn unpin_all_chat_messages<'life0, 'async_trait>(
&'life0 self,
data: UnpinAllChatMessages
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to clear the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the ‘can_pin_messages’ admin right in a supergroup or ‘can_edit_messages’ admin right in a channel. Returns True on success. Read more
Use this method for your bot to leave a group, supergroup or channel. Returns True on success. Read more
fn get_chat_administrators<'life0, 'async_trait>(
&'life0 self,
data: GetChatAdministrators
) -> Pin<Box<dyn Future<Output = Result<Vec<ChatMember>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_chat_administrators<'life0, 'async_trait>(
&'life0 self,
data: GetChatAdministrators
) -> Pin<Box<dyn Future<Output = Result<Vec<ChatMember>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get a list of administrators in a chat.
On success, returns a Vec<ChatMember> that contains information
about all chat administrators except other bots. If the chat is a
group or a supergroup and no administrators were appointed, only the
creator will be returned. Read more
fn get_members_count<'life0, 'async_trait>(
&'life0 self,
data: GetChatMembersCount
) -> Pin<Box<dyn Future<Output = Result<i64>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_members_count<'life0, 'async_trait>(
&'life0 self,
data: GetChatMembersCount
) -> Pin<Box<dyn Future<Output = Result<i64>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get the number of members in a chat. Returns i64 on success. Read more
fn get_chat_member<'life0, 'async_trait>(
&'life0 self,
data: GetChatMember
) -> Pin<Box<dyn Future<Output = Result<ChatMember>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_chat_member<'life0, 'async_trait>(
&'life0 self,
data: GetChatMember
) -> Pin<Box<dyn Future<Output = Result<ChatMember>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get information about a member of a chat. Returns a
ChatMember object on success. Read more
fn set_chat_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: SetChatStickerSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_chat_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: SetChatStickerSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to set a new group sticker set for a supergroup.
The bot must be an administrator in the chat for this to work and must
have the appropriate admin rights. Use the field can_set_sticker_set
optionally returned in API::get_chat requests to check if the bot
can use this method. Returns True on success. Read more
fn delete_chat_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: DeleteChatStickerSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn delete_chat_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: DeleteChatStickerSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to delete a group sticker set from a supergroup.
The bot must be an administrator in the chat for this to work and must
have the appropriate admin rights. Use the field can_set_sticker_set
optionally returned in API::get_chat requests to check if the bot
can use this method. Returns True on success. Read more
fn answer_callback_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerCallbackQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn answer_callback_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerCallbackQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to send answers to callback queries sent from inline keyboards. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. On success, True is returned. Read more
fn send_sticker<'life0, 'async_trait>(
&'life0 self,
data: SendSticker
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_sticker<'life0, 'async_trait>(
&'life0 self,
data: SendSticker
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: GetStickerSet
) -> Pin<Box<dyn Future<Output = Result<StickerSet>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: GetStickerSet
) -> Pin<Box<dyn Future<Output = Result<StickerSet>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get a sticker set. On success, a StickerSet object is returned. Read more
fn upload_sticker_file<'life0, 'async_trait>(
&'life0 self,
data: UploadStickerFile
) -> Pin<Box<dyn Future<Output = Result<File>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn upload_sticker_file<'life0, 'async_trait>(
&'life0 self,
data: UploadStickerFile
) -> Pin<Box<dyn Future<Output = Result<File>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn create_new_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: CreateNewStickerSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn create_new_sticker_set<'life0, 'async_trait>(
&'life0 self,
data: CreateNewStickerSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to create a new sticker set owned by a user. The bot will be able to edit the sticker set thus created. You must use exactly one of the fields png_sticker or tgs_sticker. Returns True on success. Read more
fn add_sticker_to_set<'life0, 'async_trait>(
&'life0 self,
data: AddStickerToSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn add_sticker_to_set<'life0, 'async_trait>(
&'life0 self,
data: AddStickerToSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to add a new sticker to a set created by the bot. You must use exactly one of the fields png_sticker or tgs_sticker. Animated stickers can be added to animated sticker sets and only to them. Animated sticker sets can have up to 50 stickers. Static sticker sets can have up to 120 stickers. Returns True on success. Read more
fn set_sticker_position_in_set<'life0, 'async_trait>(
&'life0 self,
data: SetStickerPositionInSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_sticker_position_in_set<'life0, 'async_trait>(
&'life0 self,
data: SetStickerPositionInSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to move a sticker in a set created by the bot to a specific position. Returns True on success. Read more
fn delete_sticker_from_set<'life0, 'async_trait>(
&'life0 self,
data: DeleteStickerFromSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn delete_sticker_from_set<'life0, 'async_trait>(
&'life0 self,
data: DeleteStickerFromSet
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to delete a sticker from a set created by the bot. Returns True on success. Read more
fn set_sticker_set_thumb<'life0, 'async_trait>(
&'life0 self,
data: SetStickerSetThumb
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_sticker_set_thumb<'life0, 'async_trait>(
&'life0 self,
data: SetStickerSetThumb
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to set the thumbnail of a sticker set. Animated thumbnails can be set for animated sticker sets only. Returns True on success. Read more
fn answer_inline_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerInlineQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn answer_inline_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerInlineQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to send answers to an inline query. On success, True is returned. No more than 50 results per query are allowed. Read more
fn send_invoice<'life0, 'async_trait>(
&'life0 self,
data: SendInvoice
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn send_invoice<'life0, 'async_trait>(
&'life0 self,
data: SendInvoice
) -> Pin<Box<dyn Future<Output = Result<Message>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn answer_shipping_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerShippingQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn answer_shipping_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerShippingQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn answer_pre_checkout_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerPreCheckoutQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn answer_pre_checkout_query<'life0, 'async_trait>(
&'life0 self,
data: AnswerPreCheckoutQuery
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Once the user has confirmed their payment and shipping details, the Bot API sends the final confirmation in the form of an Update with the field pre_checkout_query. Use this method to respond to such pre-checkout queries. On success, True is returned. Note: The Bot API must receive an answer within 10 seconds after the pre-checkout query was sent. Read more
fn set_game_score<'life0, 'async_trait>(
&'life0 self,
data: SetGameScore
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_game_score<'life0, 'async_trait>(
&'life0 self,
data: SetGameScore
) -> Pin<Box<dyn Future<Output = Result<TrueOrObject<Message>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to set the score of the specified user in a game. On success, if the message was sent by the bot, returns the edited Message, otherwise returns True. Returns an error, if the new score is not greater than the user’s current score in the chat and force is False. Read more
fn get_game_high_scores<'life0, 'async_trait>(
&'life0 self,
data: GetGameHighScores
) -> Pin<Box<dyn Future<Output = Result<Vec<GameHighScore>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn get_game_high_scores<'life0, 'async_trait>(
&'life0 self,
data: GetGameHighScores
) -> Pin<Box<dyn Future<Output = Result<Vec<GameHighScore>>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Use this method to get data for high score tables. Will return the score of the specified user and several of his neighbors in a game. On success, returns a Vec of GameHighScore objects. Read more
fn set_passport_data_errors<'life0, 'async_trait>(
&'life0 self,
data: SetPassportDataErrors
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn set_passport_data_errors<'life0, 'async_trait>(
&'life0 self,
data: SetPassportDataErrors
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Informs a user that some of the Telegram Passport elements they provided contains errors. The user will not be able to re-submit their Passport to you until the errors are fixed (the contents of the field for which you returned the error must change). Returns True on success. Read more
Auto Trait Implementations
impl !RefUnwindSafe for APIClient
impl !UnwindSafe for APIClient
Blanket Implementations
Mutably borrows from an owned value. Read more
Wrap the input message T in a tonic::Request
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more