saleae 0.1.0

a rust library for interacting with saleae devices
Documentation
//! Additional control when performing mixed captures.

/// Holds Performance Options
pub enum PerformanceOption {
    Full = 100,
    Half = 50,
    Third = 33,
    Quarter = 25,
    Low = 20,
}