anyslot 0.1.1

global bridge c-bindings of any type slot for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc(html_root_url = "https://docs.rs/anyslot/0.1.1")]
//! global bridge c-bindings of any type slot for Rust
//!

pub mod anyslot;

pub mod minimum;

#[cfg(test)]
mod tests {
  use super::minimum::minimum_test;

  /// with [-- --nocapture] or with [-- --show-output]
  #[test]
  fn test_anyslot() {
    assert_eq!(minimum_test(), ());
  }
}