1 | //! Utilities for pinning |
---|---|
2 | |
3 | #![no_std] |
4 | #![warn(missing_docs, missing_debug_implementations)] |
5 | #![deny(bare_trait_objects)] |
6 | #![allow(unknown_lints)] |
7 | #![doc(html_root_url = "https://docs.rs/pin-utils/0.1.0")] |
8 | |
9 | #[doc(hidden)] |
10 | pub mod core_reexport { |
11 | pub use core::*; |
12 | } |
13 | |
14 | #[macro_use] |
15 | mod stack_pin; |
16 | #[macro_use] |
17 | mod projection; |
18 |