turingram 0.1.0

Small runtime-agnostic Telegram Bot API framework for Rust.
Documentation
1
2
3
4
5
6
7
8
use serde::Serialize;

/// Parameters identifying the message being replied to.
#[derive(Debug, Serialize)]
pub struct ReplyParameters {
    /// Identifier of the message that the new message replies to.
    pub message_id: u32,
}