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
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_aux;

pub mod types {
include!(concat!(env!("OUT_DIR"), "/td_api_types.rs"));
}

pub mod methods {
use super::types::*;
use ::serde::de::DeserializeOwned;
use ::serde::Serialize;
use ::std::fmt::Debug;

pub trait Method: Serialize+Clone {
    const TYPE: &'static str;
    type Response: DeserializeOwned+Debug;

    fn tag(self) -> MethodType<Self>
        where Self: ::std::marker::Sized {
        MethodType {
            type_: Self::TYPE,
            payload: self,
        }
    }
}
#[derive(Serialize, Debug, Clone)]
pub struct MethodType<T: Method> {
    #[serde(rename="@type")]
    pub type_: &'static str,
    #[serde(flatten)]
    pub payload: T,
}

include!(concat!(env!("OUT_DIR"), "/td_api_methods.rs"));
}