dataview

Crates.iodataview
lib.rsdataview
version1.0.1
sourcesrc
created_at2020-01-11 19:50:53.947213
updated_at2022-11-04 21:32:56.044058
descriptionSafe transmute between types and byte arrays of the same size.
homepage
repositoryhttps://github.com/CasualX/dataview
max_upload_size
id197560
size37,334
Casper (CasualX)

documentation

https://docs.rs/dataview/

README

DataView

MIT License crates.io docs.rs Build status

The Pod trait marks types whose values can be safely transmuted between byte arrays of the same size.

The DataView type defines read and write data APIs to an underlying byte buffer.

Library

This library is available on crates.io.

Documentation can be found on docs.rs.

In your Cargo.toml, put

[dependencies]
dataview = "~1.0"

Examples

#[derive(dataview::Pod)]
#[repr(C)]
struct MyType {
	field: i32,
}

// Construct a zero initialized instance
let mut inst: MyType = dataview::zeroed();
assert_eq!(inst.field, 0);

// Use DataView to access the instance
let view = dataview::DataView::from_mut(&mut inst);
view.write(2, &255_u8);

// Create a byte view over the instance
assert_eq!(dataview::bytes(&inst), &[0, 0, 255, 0]);

License

Licensed under MIT License, see license.txt.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, shall be licensed as above, without any additional terms or conditions.

Commit count: 6

cargo fmt