origen_metal 1.4.0

Bare metal APIs for the Origen SDK
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use super::Limit;

/// SubTests are used to model a test method or IG-XL flow line which has multiple limits.
#[derive(Debug)]
pub struct SubTest {
    #[allow(dead_code)]
    test_id: usize,
    /// If not present the name will be derived from the parent test
    #[allow(dead_code)]
    name: Option<String>,
    /// Optional test number
    #[allow(dead_code)]
    number: Option<usize>,
    #[allow(dead_code)]
    lo_limit: Option<Limit>,
    #[allow(dead_code)]
    hi_limit: Option<Limit>,
}