1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Utility types and traits.

pub mod buf_stream;
pub mod http;

#[doc(hidden)]
pub mod tuple;

mod chain;
mod never;
mod sealed;

pub use self::buf_stream::BufStream;
pub use self::chain::Chain;

pub(crate) use self::never::Never;
pub(crate) use self::sealed::Sealed;