Skip to main content

scope_local/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3#![warn(missing_docs)]
4#![cfg_attr(docsrs, feature(doc_cfg))]
5
6extern crate alloc;
7#[cfg(test)]
8extern crate std;
9
10mod boxed;
11mod item;
12mod scope;
13
14pub use item::{Item, LocalItem, ScopeItem, ScopeItemMut};
15pub use scope::{
16    ActiveScope, Scope, ScopeActivationError, ScopeCell, ScopeCellBusy, ScopeCellReadGuard,
17    ScopeCellWriteGuard,
18};