tokio-uni-stream 0.0.0

Combines both `TcpStream` and `UnixStream` into a single `Stream` type, and provide a fallback type for non-Unix platforms.
Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

mod default;
mod unix;

#[cfg(not(unix))]
pub use self::default::Stream;
#[cfg(unix)]
pub use self::unix::Stream;