aboutsummaryrefslogtreecommitdiff
path: root/src/util/mod.rs
blob: a17f25a6b9138a5d901c9bfe62da2ce7f9b65ffb (plain)
1
2
3
4
5
6
7
8
mod maybe_dangling;
#[cfg(any(feature = "io", feature = "codec"))]
mod poll_buf;

pub(crate) use maybe_dangling::MaybeDangling;
#[cfg(any(feature = "io", feature = "codec"))]
#[cfg_attr(not(feature = "io"), allow(unreachable_pub))]
pub use poll_buf::{poll_read_buf, poll_write_buf};