5个版本 (破坏性更新)
0.13.0 | 2024年3月17日 |
---|---|
0.12.0 | 2024年3月11日 |
0.11.0 | 2023年6月17日 |
0.10.0 | 2023年3月22日 |
0.9.0 | 2023年3月19日 |
#1415 in 异步
每月45次下载
在 2 crates 中使用
175KB
3.5K SLoC
SSIP客户端
ssip-client
使用纯Rust实现语音调度器SSIP客户端库。
请参阅 client::Client
了解同步API,以及 poll::QueuedClient
了解异步API。
示例
use ssip_client::{fifo, ClientName};
let mut client = fifo::Builder::new().build()?;
client
.set_client_name(ClientName::new("joe", "hello"))?
.check_client_name_set()?;
let msg_id = client.speak()?.send_line("hello")?.receive_message_id()?;
client.quit()?;
依赖
~8–22MB
~272K SLoC