dope-fiber 0.11.0

The manifold runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::io;

pub enum RecvInto {
    Bytes(usize),
    Failed(io::Error),
    Pending,
}

pub enum SendIdle {
    Idle,
    Failed(io::Error),
    Pending,
}