rustelebot 0.3.2

A telegram bot API which help you send message, or utilize telegram bot API integrateable with your application
Documentation
1
2
3
4
5
6
7
8
9
use crate::ErrorResult;

use std::fmt::{Display, Formatter, Error};

impl Display for ErrorResult {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> {
        write!(f, "{}", self.msg)
    }
}