ad-core-rs 0.15.0

Core types and base classes for areaDetector-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod ad_driver;
pub mod ndarray_driver;

// Re-export for backward compatibility
pub use ad_driver::ADDriverParams as ADBaseParams;

use asyn_rs::param::ParamType;

/// Definition of a single areaDetector parameter.
pub struct ParamDef {
    pub name: &'static str,
    pub param_type: ParamType,
    pub description: &'static str,
}