1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
use floorplan::*;
use layer_list::*;
use types::*;

#[derive(Clone, Copy)]
#[repr(C)]
pub struct Die_t {
    pub Id: String_t,
    pub NLayers: CellIndex_t,
    pub SourceLayerOffset: CellIndex_t,
    pub Layers: LayerList_t,
    pub Floorplan: Floorplan_t,
}