memsocket 0.1.3

An asynchronous in-memory socket-like interface.
Documentation
1
2
3
4
5
6
7
8
9
10
use unbounded;
use UnboundedSocket;

#[deprecated(since = "0.1.2", note = "use `BoundedSocket` or `UnboundedSocket` instead")]
pub type Socket = UnboundedSocket;

#[deprecated(since = "0.1.2", note = "use `bounded` or `unbounded` instead")]
pub fn new() -> (UnboundedSocket, UnboundedSocket) {
    unbounded()
}