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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! Types representing a mask position.

use serde::{Deserialize, Serialize};

/// Represents where the mask is placed.
#[derive(Debug, PartialEq, Eq, Clone, Copy, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
// todo: #[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)]
// todo: #[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,
}

impl Point {
    /// Checks if `self` is `Forehead`.
    pub fn is_forehead(self) -> bool {
        self == Point::Forehead
    }

    /// Checks if `self` is `Eyes`.
    pub fn is_eyes(self) -> bool {
        self == Point::Eyes
    }

    /// Checks if `self` is `Mouth`.
    pub fn is_mouth(self) -> bool {
        self == Point::Mouth
    }

    /// Checks if `self` is `Chin`.
    pub fn is_chin(self) -> bool {
        self == Point::Chin
    }
}