same-types 0.1.1

Ensure that two types are the same.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Ensure that two types are the same, or fail with a compilation error.

```rust
use same_types::assert_same_types;

assert_same_types!(u32, u32, u32, u32);
```

```rust
use same_types::assert_same_types;

// Fails with the message:
// the trait `SameTypes` is not implemented for `(i32, u32)`
assert_same_types!(u32, u32, i32, u32);
```