1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*!
 Placeholder for currently unsupported handwritten iMessages
*/

/// Placeholder for currently unsupported [handwritten](https://support.apple.com/en-us/HT206894) iMessages
pub struct HandwrittenMessage {}

impl HandwrittenMessage {
    pub fn new() -> Self {
        Self {}
    }
}

impl Default for HandwrittenMessage {
    fn default() -> Self {
        Self::new()
    }
}