await_state 0.1.0

A minimal, powerful async state coordination map for Rust — wait for state changes, not just values.
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, thiserror::Error)]
pub enum AwaitStateError {
    #[error("key not found")]
    KeyNotFound,

    #[error("timeout expired")]
    TimeoutExpired,
}