mesh_channel_core/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Core mesh channel functionality, supporting sending and receiving messages
5//! within and between nodes.
6//!
7//! This contains only the basic channel implementations, not the extra utility
8//! types on top that `mesh_channel` provides.
9
10mod deque;
11mod error;
12mod mpsc;
13mod oneshot;
14mod sync_unsafe_cell;
15
16pub use error::*;
17pub use mpsc::*;
18pub use oneshot::*;