mbus-ffi 0.13.0

Native C FFI and browser WASM bindings for modbus-rs client APIs, with optional generated server bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Python bindings for `mbus-gateway`.
//!
//! Exposes [`AsyncTcpGateway`](async_tcp::AsyncTcpGateway) (asyncio coroutine
//! API) and [`TcpGateway`](sync_tcp::TcpGateway) (blocking wrapper) backed by
//! [`mbus_gateway::AsyncTcpGatewayServer`].
//!
//!
//! The `GatewayEventHandler` Python class allows you to subclass and receive
//! telemetry events for session routing, forwarding, and errors.

pub mod async_tcp;
pub mod composite_router;
pub mod event_adapter;
pub mod event_handler;
pub mod sync_tcp;