1个不稳定版本
0.1.1 | 2019年7月30日 |
---|
在#ws中排名第15
8KB
161 行
ws-frame
WebSocket (RFC6455) 帧解码库。
示例
use ws_frame::{Frame, Opcode};
let buf = [0b10100010, 0b00000001, 0b00000010];
let mut f = Frame::empty();
if f.decode(&buf).is_complete() {
if Opcode::Ping == f.head.unwrap().op {
println!("Pong!")
}
}
依赖项
~120KB