ljm 0.3.0

An idiomatic Rust wrapper for the LabJack LJM library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

extern crate ljm_sys as ffi;

mod constants;
pub use constants::*;

mod error;
pub use error::*;

mod types;
pub use types::*;

mod handle;
pub use handle::*;

mod util;
pub use util::*;