An open API service indexing awesome lists of open source software.

https://github.com/byte-sourcerer/typed_id2

Typed ID for Rust
https://github.com/byte-sourcerer/typed_id2

Last synced: 5 months ago
JSON representation

Typed ID for Rust

Awesome Lists containing this project

README

          

# typed_id2

## Usage

```rust
use typed_id::Id;

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

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