descord 0.1.11

A minimal discord api wrapper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod consts;

pub mod opcode;
pub mod payloads;
pub mod permissions;
pub use consts::*;
pub mod color;
pub mod intents;
pub mod reaction;

#[allow(non_snake_case)]
mod AttachmentFlags {
    /// This attachment has been edited using the remix feature on mobile
    pub const IS_REMIX: u32 = 1 << 2;
}