numid 0.2.9

A macro for generating structures which behave like numerical id.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

use numid::numid;

#[allow(unused_imports)]
use core::fmt::Display;

numid!(struct Test);

#[test]
fn conflicting_trait_impl() {}