visa-device-handler 1.1.0

a crate to handle NI-VISA connections and simplify its use.
Documentation
1
2
3
4
5
6
7
8
9
10
use mutex_logger::logger::Verbosity;

pub struct MapConfig {
    pub panic_verbosity:Verbosity
}
impl MapConfig {
    pub fn default() ->MapConfig {
        return MapConfig{panic_verbosity:Verbosity::Error};
    }
}