telepathy 0.0.1

High-level Telegram Bot API library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug)]
pub enum MaskPoint {
    Forehead,
    Eyes,
    Mouth,
    Chin,
}

#[derive(Debug)]
pub struct MaskPosition {
    point: MaskPoint,
    x_shift: f64,
    y_shift: f64,
    scale: f64,
}