1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Types representing a mask position.

use is_macro::Is;
use serde::{Deserialize, Serialize};

/// Represents where the mask is placed.
#[derive(
    Debug, PartialEq, Eq, Clone, Copy, Hash, Serialize, Deserialize, Is,
)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive]
pub enum Point {
    /// Placed on forehead.
    Forehead,
    /// Placed on eyes.
    Eyes,
    /// Placed on mouth.
    Mouth,
    /// Placed on chin.
    Chin,
}

/// Represents a [`MaskPosition`].
///
/// [`MaskPosition`]: https://core.telegram.org/bots/api#maskposition
#[derive(Debug, PartialEq, Clone, Copy, Serialize, Deserialize)]
#[non_exhaustive]
pub struct MaskPosition {
    /// The position point of the mask.
    pub point: Point,
    /// The shift of the mask by X.
    pub x_shift: f64,
    /// The shift of the mask by Y.
    pub y_shift: f64,
    /// The scale of the mask.
    pub scale: f64,
}