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); ```