typed_id2 0.1.3

typed ID for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# typed_id2

## Usage

```rust
use typed_id::Id;

struct Customer {
    name: String,
}
type CustomerId = Id<i32, Customer>;

let customer_id = CustomerId::new(1);
```