1 mod maybe_dangling;
2 #[cfg(any(feature = "io", feature = "codec"))]
3 mod poll_buf;
4 
5 pub(crate) use maybe_dangling::MaybeDangling;
6 #[cfg(any(feature = "io", feature = "codec"))]
7 #[cfg_attr(not(feature = "io"), allow(unreachable_pub))]
8 pub use poll_buf::{poll_read_buf, poll_write_buf};
9