dope-fiber 0.9.0

The manifold runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod open;
mod read;
mod splice;
mod stat;

use std::io;
use std::io::Error;

use dope::manifold::file::SourceRef;
pub use dope::manifold::file::{Direct, Fixed, Metadata, Source};
pub use open::{Open, OpenKind};
pub use read::{BlockRead, Read};
pub use splice::SpliceToPipe;
pub use stat::Stat;

fn already_done() -> io::Error {
    Error::other("dope::file: fiber polled after completion")
}