twilight_model/gateway/mod.rs
1pub mod connection_info;
2pub mod event;
3pub mod payload;
4pub mod presence;
5
6mod close_code;
7mod frame;
8mod id;
9mod intents;
10mod opcode;
11mod reaction;
12mod session_start_limit;
13
14pub use self::{
15 close_code::{CloseCode, CloseCodeConversionError},
16 frame::CloseFrame,
17 id::{ShardId, ShardIdParseError, ShardIdParseErrorType},
18 intents::Intents,
19 opcode::OpCode,
20 reaction::GatewayReaction,
21 session_start_limit::SessionStartLimit,
22};