//! Saleae client for Rust
//!
//! This crate provides a Rust API for [Saleae](https://www.saleae.com).
//! The API is based on the documentation provided here:
//! [SaleaeSocketAPI](https://github.com/saleae/SaleaeSocketApi)
//!
//! The main entry point for this API is the ['Client'](client/struct.Client.html) struct.
//!
//!
//! # Usage
//! ```text
//! [dependencies]
//! saleae = "*"
//! ```
//!
//! # Example with no error handling
//! ```rust, no_run
//! extern crate saleae;
//!
//! use saleae::{Client, Connection};
//! use std::net::TcpStream;
//!
//! let mut conn = Client::new(Connection::new("127.0.0.1:10429")).unwrap();
//! let response0 = conn.get_performance();
//! println!("get_performance: {}", response0.unwrap());
//!
//! let response1 = conn.get_connected_devices();
//! println!("get_command_devices: {:?}", response1.unwrap());
pub use ;
pub use ConnectedDevice;
pub use PerformanceOption;
pub use SampleRate;
extern crate custom_derive;
extern crate enum_derive;