identifier 0.1.3

Generate 128 bits id structs easily
Documentation
1
2
3
4
5
6
7
use identifier::Identifier;

#[derive(Identifier, Eq, PartialEq)]
#[identifier(params = "1")]
struct Id(u128);

fn main() {}