senders_receivers 0.0.7

Senders/Receivers implementation for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The `io` mod holds IO utilities.
//!
//! It decorates read/write/etc types, such that they play nice with [senders/receivers](crate::traits::TypedSender).
//! For example, it'll add a `fd.write(Scheduler, buffer)` (yielding a [TypedSender](crate::traits::TypedSender) to the [File](std::fs::File) type.
//!
//! # Unfinished
//! This is unfinished, I'm still working on this.
//! I implemented a small bit, so I could verify [LetValue](crate::let_value::LetValue) works as I want it to.

mod default;
mod write;

pub use default::EnableDefaultIO;
pub use write::{Write, WriteAllTS, WriteTS};