| Crates.io | bare_metal_deque |
| lib.rs | bare_metal_deque |
| version | 0.1.0 |
| created_at | 2025-03-28 19:19:00.114632+00 |
| updated_at | 2025-03-28 19:19:00.114632+00 |
| description | BareMetalDeque is a deque implementation intended for no_std use |
| homepage | https://github.com/gjf2a/bare_metal_deque |
| repository | https://github.com/gjf2a/bare_metal_deque |
| max_upload_size | |
| id | 1610040 |
| size | 22,857 |
no-std RustThe BareMetalDeque represents a fixed-size double-ended queue analogous to VecDeque. It is implemented internally as a ring buffer.
There are numerous other implementations of this concept available. None quite met my own needs. Here is the combination of features that distinguishes this particular implementation:
Key features:
no-std Rust projects.unsafe code.Copy and Clone traits.Default, Copy, and Clone traits.