botrs 0.12.2

A Rust QQ Bot framework based on QQ Guild Bot API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Intent flags for controlling which events the bot receives.
//!
//! This module provides the `Intents` struct and related functionality for managing
//! which gateway events your bot will receive. Intents act as a permission system
//! for gateway events.

mod aliases;
mod core;
mod display;
mod ops;

pub use aliases::*;
pub use core::Intents;

#[cfg(test)]
mod tests;