mbus-serial 0.15.0

Serial RTU and ASCII transport implementations for modbus-rs, including sync, Tokio, and WASM adapters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(all(
    any(feature = "serial-client", feature = "serial-server"),
    not(target_arch = "wasm32")
))]
pub mod std_serial;

#[cfg(all(feature = "serial-async", not(target_arch = "wasm32")))]
pub mod async_serial;

#[cfg(all(feature = "serial-wasm", target_arch = "wasm32"))]
pub mod wasm_serial;

#[cfg(all(feature = "serial-wasm-async", target_arch = "wasm32"))]
pub mod wasm_async_serial;