async_labjack 0.1.0

A pure rust, async interface to the LabJack T-series via Modbus TCP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Common types and traits

///////////////////////////////////////////////////////////////////
/// Modules
///////////////////////////////////////////////////////////////////
pub use crate::client;

///////////////////////////////////////////////////////////////////
/// Types
///////////////////////////////////////////////////////////////////
pub use crate::client::LabjackClient;
pub use crate::labjack::{CanRead, CanWrite, CannotRead, CannotWrite, LabjackTag};

///////////////////////////////////////////////////////////////////
/// Traits
///////////////////////////////////////////////////////////////////
pub use crate::client::LabjackInteractions;