raw_bytify/
lib.rs

1/// # Raw Bytify
2/// 
3/// A simple and minimal utility library for converting structs to bytes 
4/// and vice versa.
5/// 
6
7pub mod from;
8pub mod to;
9
10#[cfg(test)]
11mod tests;