nested_ref/
lib.rs

1#![doc = include_str!("../README.md")]
2#![no_std]
3#![warn(clippy::cargo)]
4#![warn(clippy::missing_docs_in_private_items)]
5#![warn(clippy::pedantic)]
6#![warn(clippy::undocumented_unsafe_blocks)]
7#![warn(missing_docs)]
8#![warn(unsafe_op_in_unsafe_fn)]
9
10mod clone_arr;
11mod exclusive;
12mod shared;
13
14#[cfg(doc)]
15use core::cell::{Ref, RefCell, RefMut};
16
17pub use exclusive::NestedRefMut;
18pub use shared::NestedRef;