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