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.
Works without nightly but leaks data, enable ptr_metadata
or disable default leak_data
feature flag if memory leaks are an issue:
ptr_metadata
requires nightly,leak_data
imposes Copy
requirement on stored types.References returned by store
function follow the same borrow restrictions as the
language, Deref
is implemented for ContiguousMemoryRef
but it will panic on
dereference if it's been already mutably borrowed somewhere else.
Use ContiguousMemoryRef::try_get
if you'd like to handle that properly.
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 = { 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"] }
std
(default) - enables support for std
environmentno_std
- enables support for no_std
environmentleak_data
(default) - disables Copy
requirement for stored types, but any
references in stored data will be leaked when the memory container is droppeddebug
- enables derive(Debug)
on structures unrelated to error handlingptr_metadata
<nightly> - enables support for casting returned references
into dyn Trait
types as well as cleaning up any types that implement Drop
or generate drop glueerror_in_core
<nightly> - enables support for core::error::Error
in no_std
environment```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 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.