logic-mesh 1.0.0

Control logic engine using event based and reactive blocks written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2022-2023, Radu Racariu.

//! Module for the basic building blocks of the engine.

pub mod block;
pub mod engine;
pub mod input;
pub mod link;
pub mod output;
pub mod program;
pub mod status;

pub use status::Status;