intercomm 0.1.1

Asynchronous inter-component communication library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
macro_rules! id {
    ($t:ty) => {
        ::std::any::TypeId::of::<$t>()
    };
}

mod once_cell;
mod static_type_map;
mod untyped_box;

pub(crate) use once_cell::OnceCell;
pub(crate) use static_type_map::StaticTypeMap;
pub(crate) use untyped_box::UntypedBox;