libmodbus-rs 0.4.3

Binding to libmodbus. Libmodbus is a free software library to send/receive data with a device which respects the Modbus protocol. This library can use a serial port or an Ethernet connection. http://libmodbus.org/
1
2
3
4
5
error_chain!{
    foreign_links {
        Io(::std::io::Error) #[cfg(unix)];
    }
}