libreda-db 0.0.9

Layout and netlist datastructures for chip design.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

//! Test that the auto-traits are implemented for certain public types.


fn is_normal<T: Sized + Send + Sync + Unpin> () {}

#[test]
fn chip_is_normal_type() {
    use libreda_db::chip::Chip;
    is_normal::<Chip>();
}

#[test]
fn rc_string_is_normal_type() {
    use libreda_db::rc_string::RcString;
    is_normal::<RcString>();
}