nested-ref 0.1.0

References to data contained in one or more nested RefCells
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(clippy::cargo)]
#![warn(clippy::missing_docs_in_private_items)]
#![warn(clippy::pedantic)]
#![warn(clippy::undocumented_unsafe_blocks)]
#![warn(missing_docs)]
#![warn(unsafe_op_in_unsafe_fn)]

mod clone_arr;
mod exclusive;
mod shared;

#[cfg(doc)]
use core::cell::{Ref, RefCell, RefMut};

pub use exclusive::NestedRefMut;
pub use shared::NestedRef;