15 个版本 (4 个重大更新)
0.5.0 | 2023年7月3日 |
---|---|
0.4.2 | 2023年6月18日 |
0.4.0 | 2023年5月30日 |
0.3.0 | 2023年5月30日 |
0.1.8 | 2023年5月17日 |
#1085 in 编码
每月下载量 158
36KB
755 行
wire-framed
wire-framed 是一个使用自定义二进制协议进行帧编码和解码的库。它优先考虑易用性。
它围绕两个特质 FromFrame
和 IntoFrame
展开。这些特质可以通过在 utils
模块中提供的实用工具中手动实现,或者使用 Encoding
和 Decoding
宏自动实现。
用法
use wire_framed::prelude::*;
#[derive(Debug, Encoding, Decoding, PartialEq, Eq)]
pub struct Foo {
pub id: u32,
pub name: String,
pub description: String,
pub created_at: u64,
}
fn send() -> Result<(), std::io::Error> {
let foo = Foo {
id: 1,
name: "John".to_string(),
description: "John is a legend".to_string(),
created_at: 1234567890,
};
let frame = foo.into_frame();
send_to_socket(frame)
}
fn recv() -> Result<(), std::io::Error> {
let bytes = recv_from_socket();
let foo = Foo::from_frame(bytes)?;
// process foo
}
依赖项
~3.5–5MB
~89K SLoC