twilight_model/gateway/payload/outgoing/mod.rs
1//! Payloads that are outgoing to the Discord Gateway API.
2//!
3//! These are sent by shards to the Discord API. Some payloads are required for
4//! the operation of a shard; these are [`Heartbeat`], [`Identify`], and
5//! [`Resume`]. Others - such as [`RequestGuildMembers`] - are for users to use
6//! in their own operations.
7//!
8//! Refer to [Discord Docs / Gateway Commands][1] for Discord's documentation
9//! about incoming and outgoing events.
10//!
11//! [1]: https://discord.com/developers/docs/topics/gateway#commands-and-events-gateway-commands
12
13pub mod identify;
14pub mod request_guild_members;
15pub mod resume;
16pub mod update_presence;
17pub mod update_voice_state;
18
19mod heartbeat;
20
21pub use self::{
22 heartbeat::Heartbeat, identify::Identify, request_guild_members::RequestGuildMembers,
23 resume::Resume, update_presence::UpdatePresence, update_voice_state::UpdateVoiceState,
24};