1/// `Warning!`: It is possible to occur
2/// hash confiction if there are two many tags.
3#[derive(Clone, Copy, Debug)]
4pub struct Tag<const ID:u64>;
56#[macro_export]
7macro_rules! tag {
8 ($name:literal) => {
9$crate::pipeit_derive::tag_struct!($name)
10 };
11}
12