Cargo.toml toml [dependencies] typid = "1"
toml [dependencies] typid = "1"
```rust use typid::ID;
struct Foo { pub id: ID, }
fn main() { let a = Foo { id: ID::new() }; let b = Foo { id: ID::new() }; assert_ne!(a.id, b.id); } ```