This library provides a data view for reading and writing data in a byte array.
It also works with [no_std]
environment.
By default, this library uses little endian as the default endianness.
But you can override the endianness by using BE
(for big endian) or NE
(for native endian) in fetures flag.
For example, if you want to use big endian,
toml
[dependencies]
data-view = { version = "4", features = ["BE"] }
Add this to your project's Cargo.toml
file.
toml
[dependencies]
data-view = "4"
```rust use data_view::DataView;
let mut view = DataView::from([0; 8]);
view.write::
view.offset = 0;
asserteq!(view.read::
```rust use data_view::View;
let mut buf: [u8; 16] = [0; 16];
buf.writeat(0, 42u16); buf.writeat(2, 123u32);
asserteq!(buf.readat::
There are many alternative libraries, * byteorder * bytes
But I didn't like API of these libraries.
The have a lot of functions for reading and writing data. For example, read_u16
, read_u32
, write_i64
, And so on...
Luckily, Rust support Generics function, This is why this library exists.