1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! Modbus function code handlers.
//!
//! This module provides a modular, extensible architecture for handling
//! Modbus function codes. Each handler implements the `FunctionHandler` trait
//! and can be registered with the `HandlerRegistry`.
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────┐
//! │ HandlerRegistry │
//! │ ┌──────────────────────────────────────────────────┐ │
//! │ │ FC01 → ReadCoilsHandler │ │
//! │ │ FC02 → ReadDiscreteInputsHandler │ │
//! │ │ FC03 → ReadHoldingRegistersHandler │ │
//! │ │ FC04 → ReadInputRegistersHandler │ │
//! │ │ FC05 → WriteSingleCoilHandler │ │
//! │ │ FC06 → WriteSingleRegisterHandler │ │
//! │ │ FC0F → WriteMultipleCoilsHandler │ │
//! │ │ FC10 → WriteMultipleRegistersHandler │ │
//! │ │ FC17 → ReadWriteMultipleRegistersHandler │ │
//! │ │ ... → CustomHandler (extensible) │ │
//! │ └──────────────────────────────────────────────────┘ │
//! └─────────────────────────────────────────────────────────┘
//! ```
//!
//! # Example
//!
//! ```rust,ignore
//! use mabi_modbus::handler::{HandlerRegistry, FunctionHandler, HandlerContext};
//!
//! // Create registry with default handlers
//! let registry = HandlerRegistry::with_defaults();
//!
//! // Or create custom registry
//! let mut registry = HandlerRegistry::new();
//! registry.register(Box::new(MyCustomHandler));
//!
//! // Dispatch request
//! let response = registry.dispatch(function_code, &pdu, &context)?;
//! ```
pub use ;
pub use ;
pub use HandlerRegistry;
pub use ;
pub use ;