telegram-bot 0.8.0

A library for creating Telegram bots
Documentation
//! Telegram bot prelude.
//!
//! This module re-exports request builder traits from telegram-bot-raw.

pub use telegram_bot_raw::CanAnswerCallbackQuery;
pub use telegram_bot_raw::CanAnswerInlineQuery;
pub use telegram_bot_raw::CanExportChatInviteLink;
pub use telegram_bot_raw::CanLeaveChat;
pub use telegram_bot_raw::CanSendChatAction;
pub use telegram_bot_raw::{CanDeleteMessage, CanForwardMessage};
pub use telegram_bot_raw::{CanEditMessageCaption, CanEditMessageReplyMarkup, CanEditMessageText};
pub use telegram_bot_raw::{CanEditMessageLiveLocation, CanStopMessageLiveLocation};
pub use telegram_bot_raw::{CanGetChat, CanGetChatAdministrators, CanGetChatMembersCount};
pub use telegram_bot_raw::{CanGetChatMemberForChat, CanGetChatMemberForUser};
pub use telegram_bot_raw::{CanGetFile, CanGetUserProfilePhotos};
pub use telegram_bot_raw::{CanKickChatMemberForChat, CanKickChatMemberForUser};
pub use telegram_bot_raw::{CanPinMessage, CanUnpinMessage};
pub use telegram_bot_raw::{CanReplySendAudio, CanSendAudio};
pub use telegram_bot_raw::{CanReplySendContact, CanSendContact};
pub use telegram_bot_raw::{CanReplySendDocument, CanSendDocument};
pub use telegram_bot_raw::{CanReplySendLocation, CanSendLocation};
pub use telegram_bot_raw::{CanReplySendMessage, CanSendMessage};
pub use telegram_bot_raw::{CanReplySendPhoto, CanSendPhoto};
pub use telegram_bot_raw::{CanReplySendPoll, CanSendPoll, CanStopPoll};
pub use telegram_bot_raw::{CanReplySendVenue, CanSendVenue};
pub use telegram_bot_raw::{CanReplySendVideo, CanSendVideo};
pub use telegram_bot_raw::{CanUnbanChatMemberForChat, CanUnbanChatMemberForUser};
pub use telegram_bot_raw::{ToReplyRequest, ToRequest};

pub use crate::util::messages::{MessageGetFiles, MessageText};