Skip to main content

design/place/
handles.rs

1#![deny(unused_imports, reason = "to error with `ensure_full_reexport!`")]
2#![deny(
3    unfulfilled_lint_expectations,
4    reason = "to error with `ensure_full_reexport!`"
5)]
6
7use macros::ensure_full_reexport;
8
9ensure_full_reexport!(
10    mod fallible;
11    mod local;
12    mod ref_const;
13    mod ref_mut;
14);
15
16pub use self::{
17    fallible::FallibleHandle,
18    local::LocalHandle,
19    ref_const::RefHandle,
20    ref_mut::MutHandle,
21};