contiguous_mem

contiguous_mem implements a contiguous memory storage container for arbitrary data types.

CI Crates.io Documentation

Designed for both standard and no_std environments, this library ensures efficient memory allocation while being simple and (somewhat) safe to use.

Tradeoffs

Key Features

Getting Started

Add the crate to your dependencies:

toml [dependencies] contiguous_mem = { version = "0.2.*" }

Optionally disable the std feature and enable no_std feature to use in no_std environment:

toml [dependencies] contiguous_mem = { version = "0.2.*", default-features = false, features = ["no_std"] }

Features

Usage

```rust use contiguous_mem::GrowableContiguousMemory;

struct Data { value: u32, }

fn main() { // Create a ContiguousMemory instance with a capacity of 1024 bytes and 1-byte alignment let mut memory = GrowableContiguousMemory::new(1024);

// Store data in the memory container
let data = Data { value: 42 };
let stored_number = memory.store(22u64);
let stored_data = memory.store(data);

// Retrieve and use the stored data
println!("Retrieved data: {}", *stored_data);
println!("Retrieved number: {}", *stored_number);

} ```

Contributions

Contributions are welcome, feel free to create an issue or a pull request.

All contributions to the project are licensed under the zlib/MIT/Apache 2.0 license unless you explicitly state otherwise.

License

This project is licensed under Zlib, MIT, or Apache-2.0 license, choose whichever suits you most.