1
2
3
4
5
6
7
8
9
//! Defines channels for Multis that will move data around (instead of [super::ogre_arc]ing it).\
//! Basic tests show they are the best performants for payload of sizes < (1k / number of multis).\
//! The Rust Compiler is able, to some extent, to optimize some operations to zero-copy: publishing
//! is subject to this optimization, but consumption isn't.

pub mod atomic;
pub mod crossbeam;
pub mod full_sync;