gdsconv/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

pub mod export;
pub mod import;

#[cfg(test)]
mod tests;

/// A GDS layer specification.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub struct GdsLayer(pub u16, pub u16);