use super::MediaMessage;
use crate::types::{self, PhotoSize};
pub trait Animation<C>: MediaMessage<C> {
fn animation(&self) -> &types::Animation;
}
pub trait Audio<C>: MediaMessage<C> {
fn audio(&self) -> &types::Audio;
}
pub trait Document<C>: MediaMessage<C> {
fn document(&self) -> &types::Document;
}
pub trait Location<C>: MediaMessage<C> {
fn location(&self) -> &types::Location;
}
pub trait Photo<C>: MediaMessage<C> {
fn photo(&self) -> &[PhotoSize];
}
pub trait Video<C>: MediaMessage<C> {
fn video(&self) -> &types::Video;
}