1 2 3 4 5 6 7 8 9 10
pub mod memory; pub mod network; pub(crate) const DEFAULT_CHANNEL_SIZE: usize = 10240; #[derive(Copy, Clone, Debug)] pub(crate) enum ChannelType { Memory = 1, Network = 2, }