bb-ops 0.3.4

Canonical concrete components for the bytesandbrains framework — syscalls, wire transport, backends, protocols, role implementations.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Timer + trigger source ops - After, Interval, Pulse,
//! OnTrigger, EventSource.
//!
//! Spec: Sub-A in `docs/IR_AND_DSL.md` §5a.

pub mod after;
pub mod event_source;
pub mod interval;
pub mod on_trigger;
pub mod pulse;

#[cfg(test)]
#[path = "tests.rs"]
mod tests;