3 个稳定版本
1.0.2 | 2024年2月21日 |
---|
#1 in #arcade
31KB
526 代码行,不含注释
JVS-Packets ─
为 JAMMA 视频标准 协议提供的包结构。
此 crate 为 [u8]
数组提供包装,并带有获取器和设置器方法,以便轻松地更改/写入/读取数据。
示例
use jvs_packets::{jvs::{RequestPacket}, ReadPacket, Packet};
fn main() -> std::io::Result<()> {
// This is only for example. You can use any structure, that implements std::io::Read.
let mut reader = std::io::Cursor::new([0xE0, 0xFF, 0x03, 0x01, 0x02, 0x05]);
let mut req_packet: RequestPacket = RequestPacket::new();
reader.read_packet(&mut req_packet)?;
assert_eq!(req_packet.size(), 0x03);
Ok(())
}
许可证
根据您的选择,许可协议为 Apache License,版本 2.0 或 MIT 许可证。除非您明确表示,否则您提交给 JVS-packets-rs 的任何有意贡献,如 Apache-2.0 许可证中定义的,将如上所述双重许可,无需任何附加条款或条件。