modbus-relay 2025.11.0

A high performance Modbus TCP to RTU relay
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

#[derive(Error, Debug)]
pub enum BackoffError {
    #[error("Maximum retries exceeded")]
    MaxRetriesExceeded,

    #[error("Invalid backoff configuration: {0}")]
    InvalidConfig(String),

    #[error("Retry attempt failed: {0}")]
    RetryFailed(String),
}