interprocess-docfix 1.2.2

Interprocess communication toolkit. Docs fixed.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(unused_imports)]
use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(feature = "nonblocking")] {
        pub use blocking::{unblock, Unblock};
        pub use {
            futures_core::{FusedStream, Stream},
            futures_io::{AsyncRead, AsyncWrite},
        };
    } else {
        pub type Unblock<T> = std::marker::PhantomData<T>;
    }
}