message_io/lib.rs
1//! Check the [Github README](https://github.com/lemunozm/message-io),
2//! to see an overview of the library.
3
4#[cfg(doctest)]
5// Tells rustdoc where is the README to compile and test the rust code found there
6doc_comment::doctest!("../README.md");
7
8/// Adapter related information.
9/// If some adapter has special values or configuration, it is specified here.
10pub mod adapters;
11
12/// Main API. Create connections, send and receive message, signals,...
13pub mod node;
14
15/// It contains all the resources and tools to create and manage connections.
16pub mod network;
17
18/// A set of utilities to deal with asynchronous events.
19/// This module offers a synchronized event queue and timed events.
20pub mod events;
21
22/// General purpose utilities.
23pub mod util;