ommui_data 0.39.0

OMMUI data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use arnalisa::bins::SourceSinkDescription;
use indexmap::IndexMap;

pub mod filesystem;
pub mod loadable_device;

pub use loadable_device::LoadableDevice;

#[derive(Clone, Debug)]
pub struct Calibration {
    pub bins: IndexMap<String, SourceSinkDescription>,
}

#[derive(Clone, Debug)]
pub struct Sampling {
    pub bins: IndexMap<String, SourceSinkDescription>,
}