A vector-like object where elements can be larger than one item. We use this primarily to represent objects in a binary that are made up of one or more bytes.
h2gb is a tool for analyzing binary files. Importantly, a binary file is a series of objects, each of which take up some number of bytes. We need a datatype to represent this unusual requirement, hence coming up with BumpyVector!
Instantiate with a maximum size, then use somewhat like a vector:
```rust use bumpy_vector::{BumpyEntry, BumpyVector};
// Instantiate with a maximum size of 100 and a type of String
let mut v: BumpyVector
// Create a 10-byte entry at the start
let entry: BumpyEntry
// Insert it into the BumpyVector assert!(v.insert(entry).is_ok());
// Create another entry, this time from a tuple, that overlaps the first
let entry: BumpyEntry
// Create an entry that's off the end of the object
let entry: BumpyEntry
// There is still one entry in this vector assert_eq!(1, v.len()); ```
When installed with the 'serialize' feature:
toml
bumpy_vector = { version = "~0.0.0", features = ["serialize"] }
Serialization support using serde is enabled. The
BumpyVector
can be serialized with any of the serializers that Serde
supports, such as ron:
```rust use bumpy_vector::BumpyVector;
// Assumes "serialize" feature is enabled: bumpy_vector = { features = ["serialize"] }
fn main() {
let mut h: BumpyVector
// Serialize
let serialized = ron::ser::to_string(&h).unwrap();
// Deserialize
let h: BumpyVector<String> = ron::de::from_str(&serialized).unwrap();
} ```
License: MIT