origen_metal 1.4.0

Bare metal APIs for the Origen SDK
1
2
3
4
5
6
7
8
#[derive(Debug, Clone, Serialize)]
pub struct Bin {
    pub number: usize,
    pub description: Option<String>,
    pub priority: Option<usize>,
    /// Bins are fail bins by default, set this true to make it a pass bin
    pub pass: bool,
}