rust-discord-activity 0.3.0

A lightweight library to control Discord Rich Presence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::Serialize;

/// Simple structure containing a label and an URL to form a Discord Activity button.
#[derive(Serialize, Debug)]
pub struct Button {
    label: String,
    url: String,
}

impl Button {
    pub fn new(label: String, url: String) -> Button {
        Self { label, url }
    }
}