// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
use crate::types::InlineQueryResult;
use crate::types::InlineQueryResultCachedAudio;
impl InlineQueryResult {
/// This function creates an empty struct for the enum InlineQueryResult.
pub fn new() -> Self {
Self::InlineQueryResultCachedAudio(InlineQueryResultCachedAudio::new())
}
}
impl Default for InlineQueryResult {
fn default() -> Self {
Self::new()
}
}