dope 0.10.1

The manifold runtime
Documentation
1
2
3
4
5
6
7
8
9
10
cfg_select! {
    target_os = "linux" => {
        mod raw;
        pub(super) use raw::SignalState;
    }
    _ => {
        mod unsupported;
        pub(super) use unsupported::SignalState;
    }
}