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
use super::MediaMessage;
use crate::types::{self, PhotoSize};

/// A general trait for animation messages.
pub trait Animation: MediaMessage {
    /// The animation of the message.
    fn animation(&self) -> &types::Animation;
}

/// A general trait for audio messages.
pub trait Audio: MediaMessage {
    /// The audio of the message.
    fn audio(&self) -> &types::Audio;
}

/// A general trait for document messages.
pub trait Document: MediaMessage {
    /// The document of the message.
    fn document(&self) -> &types::Document;
}

/// A general trait for location messages.
pub trait Location: MediaMessage {
    /// The location of the message.
    fn location(&self) -> &types::Location;
}

/// A general trait for photo messages.
pub trait Photo: MediaMessage {
    /// The photo of the message.
    fn photo(&self) -> &[PhotoSize];
}

/// A general trait for video messages.
pub trait Video: MediaMessage {
    /// The video of the message.
    fn video(&self) -> &types::Video;
}