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
16
//! WASM/JS bindings for the modbus-rs stack.
//!
//! Layout:
//! - `client`: browser-facing client bindings (WebSocket and Web Serial)
//! - `server`: browser-facing server binding design surface

pub mod client;
pub mod server;

pub use client::{
    WasmModbusClient, WasmSerialModbusClient, WasmSerialPortHandle, request_serial_port,
};
pub use server::{
    WasmSerialServer, WasmSerialServerConfig, WasmServerBindingPlan, WasmServerStatusSnapshot,
    WasmServerTransportKind, WasmTcpGatewayConfig, WasmTcpServer,
};