contiguous_mem implements a contiguous memory storage container for arbitrary data types.
Designed for both standard and no_std environments, this library ensures efficient memory allocation while being simple and (somewhat) safe to use.
Type Agnostic: Support for various data types, including mixed types within the same container.
Multiple Implementations: Choose from specialized strategies to match your requirements:
Add the crate to your dependencies:
toml
[dependencies]
contiguous_mem = "0.1.*"
Optionally disable the std
feature and enable no_std
feature to use in no_std
environment:
toml
[dependencies]
contiguous_mem = { version = "0.1.*", default-features = false, features = ["no_std"] }
```rust use contiguous_mem::GrowableContiguousMemory;
struct Data { value: u32, }
fn main() { // Create a ContiguousMemory instance with a capacity of 1024 bytes and 8-byte alignment let mut memory = GrowableContiguousMemory::new(1024, 8).unwrap();
// Store data in the memory container
let data = Data { value: 42 };
let stored_number = memory.store(22u64).unwrap();
let stored_data = memory.store(data).unwrap();
// Retrieve and use the stored data
let retrieved_data = stored_data.get().unwrap();
println!("Retrieved data: {}", retrieved_data.value);
let retrieved_number = stored_number.get().unwrap();
println!("Retrieved number: {}", retrieved_number);
} ```
std
(default) - enables support for std
environmentno_std
- enables support for no_std
environmentdebug
- enables derive(Debug)
on structuresptr_metadata
- enables support for casting returned references into dyn Trait
typesContributions 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.
This project is licensed under Zlib, MIT, or Apache-2.0 license, choose whichever suits you most.