scope-local 0.6.5

Scope local storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]
#![no_std]
#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]

extern crate alloc;
#[cfg(test)]
extern crate std;

mod boxed;
mod item;
mod scope;

pub use item::{Item, LocalItem, ScopeItem, ScopeItemMut};
pub use scope::{
    ActiveScope, Scope, ScopeActivationError, ScopeCell, ScopeCellBusy, ScopeCellReadGuard,
    ScopeCellWriteGuard,
};