tbot 0.2.2

Make cool Telegram bots with Rust easily.
Documentation
use crate::types::{message::Text, Audio};

edited_message! {
    struct EditedAudio {
        /// The audio.
        audio: Audio,
        /// The caption of the audio.
        caption: Text,
    } -> EventLoop::edited_audio

    fn new(caption: Text,) -> Self {
        Self {
            caption: caption,
        }
    }
}