mesh_channel_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Core mesh channel functionality, supporting sending and receiving messages
//! within and between nodes.
//!
//! This contains only the basic channel implementations, not the extra utility
//! types on top that `mesh_channel` provides.

#![warn(missing_docs)]

mod deque;
mod error;
mod mpsc;
mod oneshot;

pub use error::*;
pub use mpsc::*;
pub use oneshot::*;