1
0
forked from ROMEO/nexosim

Document observable states

This commit is contained in:
Jaŭhien Piatlicki
2024-11-08 14:04:34 +01:00
parent a533b3e6c1
commit 1a0dff0f6e
6 changed files with 333 additions and 3 deletions

View File

@ -1 +1,2 @@
/// Observable states.
pub mod observables;

View File

@ -1,3 +1,9 @@
//! Observable states.
//!
//! This module contains types used to implement states automatically propagated
//! to output on change.
//!
use std::ops::Deref;
use asynchronix::ports::Output;