#rpc-client #discord #ipc #rpc

discord-rpc-client

Discord RPC的Rust客户端

13个版本

0.4.0 2023年10月16日
0.3.0 2018年12月6日
0.2.4 2018年12月4日
0.2.3 2018年4月8日
0.1.5 2018年3月28日

HTTP客户端分类中排名101

Download history 81/week @ 2024-04-27 95/week @ 2024-05-04 60/week @ 2024-05-11 64/week @ 2024-05-18 55/week @ 2024-05-25 57/week @ 2024-06-01 35/week @ 2024-06-08 66/week @ 2024-06-15 79/week @ 2024-06-22 46/week @ 2024-06-29 41/week @ 2024-07-06 38/week @ 2024-07-13 51/week @ 2024-07-20 105/week @ 2024-07-27 119/week @ 2024-08-03 111/week @ 2024-08-10

每月下载390
3 crate中使用

MIT许可证

33KB
872

Build status crates.io crates.io Discord

Discord RPC客户端

Rust的Discord RPC客户端

安装

将以下内容添加到您的 Cargo.toml

[dependencies]
discord-rpc-client = "^0.4"

示例

use std::{env, thread, time};
use discord_rpc_client::{Client, Event};

fn main() {
    // Get our main status message
    let state_message = env::args().nth(1).expect("Requires at least one argument");

    // Create the client
    let mut drpc = Client::new(425407036495495169);

    // Register event handlers with the corresponding methods
    drpc.on_ready(|_ctx| {
        println!("ready?");
    });

    // or

    drpc.on_event(Event::Ready, |ctx| {
        println!("READY!");
    });

    // Start up the client connection, so that we can actually send and receive stuff
    drpc.start();

    // Set the activity
    drpc.set_activity(|act| act.state(state_message))
        .expect("Failed to set activity");

    // Wait 10 seconds before exiting
    thread::sleep(time::Duration::from_secs(10));
}

更多示例可以在示例目录中找到。

贡献

请参阅 CONTRIBUTING.md

依赖项

~1.5–2.7MB
~51K SLoC