#read-write #struct #byte-array #file #fs-file #u16 #u32

wraited-struct

使用字节数组读取和写入 struct

2 个不稳定版本

使用旧的 Rust 2015

0.2.0 2018 年 9 月 18 日
0.1.0 2017 年 2 月 20 日

#2861Rust 模式

自定义许可

4KB

wraited-struct

读取和写入 struct

用法

extern crate wraited_struct;
use std::fs::File;

#[derive(Debug)]
struct Something {
    a: u8,
    b: u16,
    c: u32,
}

fn main() {
    let mut file = File::create("customer.bin").unwrap();
    wraited_struct::write::<Something, File>(&mut file, Something { a: 97, b: 98, c: 99 }).unwrap();

    let mut file = File::open("customer.bin").unwrap();
    let something = wraited_struct::read::<Something, File>(&mut file).unwrap();
    println!("Something is {:?}", something);
}

无运行时依赖