discord_rust_framework 0.0.1

A very high-level library for creating simple bots for Discord.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate serde;
extern crate serde_json;


#[derive(Serialize, Deserialize, Debug)]
pub struct Ready {
    pub v: i8,
    pub user: serde_json::Value,
    pub private_channels: Vec<serde_json::Value>,
    pub guilds: Vec<serde_json::Value>,
    pub session_id: String,
    pub _trace: Vec<String>,
}

impl super::MessageData for Ready { }