filthy-rich 1.0.2

Tiny, ergonomic Discord Rich Presence library for your Rust apps.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core types related to filthy-rich. Used in conjunction with the core imports.
//!
mod activity;
mod builder;
pub mod data;
pub mod payloads;
mod rpc;

pub use activity::{ActivitySpec, ActivityType, StatusDisplayType};
pub use builder::{Activity, ActivityBuilder};
pub(crate) use rpc::{
    ActivityCommand, DynamicRPCFrame, IPCCommand, PresenceHandshake, ReadyRPCFrame,
};