pinned_bucket/
lib.rs

1//! Mutable containers for pinned and immutable items.
2//!
3//! A substitute for [Box::leak](https://doc.rust-lang.org/stable/alloc/boxed/struct.Box.html#method.leak).
4
5#![warn(missing_docs, rust_2021_compatibility, rust_2018_idioms)]
6
7extern crate alloc;
8
9const PANIC: &'static str = "Another thread panicked while holding the lock.";
10
11mod list;
12mod map;
13
14pub use list::PinnedList;
15pub use map::{Iter, Keys, PinnedMap, Values};