polybox-core 0.0.1

Message-passing abstractions to make working with channels and actors a more seamless experience
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The core library for the `polybox` crate.
//!
//! See [GitHub](https://github.com/jvdwrf/polybox) for more information.

mod errors;
mod inbox;
mod interface;
mod message;
mod oneshot;
mod payload;
mod sends;

pub use polybox_codegen::{Interface, Message};
pub use type_sets::{AsSet, Contains, Members, Set};
pub use {errors::*, inbox::*, interface::*, message::*, oneshot::*, payload::*, sends::*};