async_compatibility_layer/
async_primitives.rs

1/// Provides an unbounded size broadcast async-aware queue
2pub mod broadcast;
3/// A mutex that can be subscribed to, and will notify the subscribers whenever the internal data is changed.
4pub mod subscribable_mutex;
5
6/// A rwlock that can be subscribed to, and will return state to subscribers whenever the internal
7/// data is changed.
8pub mod subscribable_rwlock;