Version Maintenance Crates.io docs.rs Crates.io

dungeon-cell

Cell and Cell-like types that can store any type without dynamic memory.

Currently only the [DungeonCore] primitive is implemented (unsized, cell, stack vec, ... are in progress).

Example

```rust use dungeoncell::{DungeonCore, layoutfor};

// a default DungeonCore can store any 'static type that fits in the layout let mut core = DungeonCore::

// we can store a i32 and get it back core.store(1234); assert_eq!(core.take(), Some(1234i32));

// we can store a f64 and get it back core.store(1.234); assert_eq!(core.take(), Some(1.234f64));

// lets get adventurous and store a String core.store(String::from("hello world")); assert_eq!(core.take(), Some(String::from("hello world")));

// we can't take a type the core isn't storing core.store(1234); assert_eq!(core.take(), None::);

// we can borrow both unique and shared core.store(1234); *core.borrowmut::().unwrap() += 10; asserteq!(core.borrow(), Some(&1244i32)); ```

Features

No-std Support

This crate is #![no_std] by default, it can be used anywhere Rust can.

Minimum Supported Rust Version

Requires Rust 1.64.0.

This crate follows the "Latest stable Rust" policy. The listed MSRV won't be changed unless needed. However, updating the MSRV anywhere up to the latest stable at time of release is allowed.


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in dungeon-cell by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.