Skip to main content

polybox_core/
lib.rs

1//! The core library for the `polybox` crate.
2//!
3//! See [GitHub](https://github.com/jvdwrf/polybox) for more information.
4
5mod errors;
6mod inbox;
7mod interface;
8mod message;
9mod oneshot;
10mod payload;
11mod sends;
12
13pub use polybox_codegen::{Interface, Message};
14pub use type_sets::{AsSet, Contains, Members, Set};
15pub use {errors::*, inbox::*, interface::*, message::*, oneshot::*, payload::*, sends::*};