25 releases (stable)
4.1.0 | Jun 9, 2024 |
---|---|
4.0.4 | Jul 25, 2022 |
3.0.0 | Jun 7, 2022 |
2.0.3 | May 31, 2022 |
0.1.1 | Dec 19, 2018 |
#446 in Encoding
42 downloads per month
Used in 2 crates
26KB
560 lines
binary_rw
A binary reader/writer for the rust language, with a similar syntax to the C# BinaryWriter and BinaryReader
Examples
Example code for reading
extern crate binary_rw;
use binary_rw::{
filestream::{Filestream, OpenType},
BinaryReader
};
fn main() {
let mut fs = Filestream::new("test.bin", OpenType::Open).expect("Failed to open file");
let mut binary_file = BinaryReader::new(&mut fs);
let read_value = binary_file.read_f32().expect("Failed to read f32");
println!("{:?}", read_value);
}
Example code for writing
extern crate binary_rs;
use binary_rs::{
filestream::{Filestream, OpenType},
BinaryReader
};
fn main() {
let mut fs = Filestream::new("test.bin", OpenType::OpenAndCreate).expect("Failed to open file");
let mut binary_file = BinaryWriter::new(&mut fs);
let value: f32 = 30.5;
binary_file.write_f32(value).expect("Failed to write f32");
}
TODO
Dependencies
~240–700KB
~16K SLoC