serenity 0.11.5

A Rust library for the Discord API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A collection of bridged support between the [`client`] module and other
//! modules.
//!
//! **Warning**: You likely _do not_ need to mess with anything in here. Beware.
//! This is lower-level functionality abstracted by the [`Client`].
//!
//! [`Client`]: super::Client
//! [`client`]: crate::client

#[cfg(feature = "gateway")]
pub mod gateway;

#[cfg(feature = "voice")]
pub mod voice;