Skip to main content

pipe_it/
tag.rs

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>;
5
6#[macro_export]
7macro_rules! tag {
8    ($name:literal) => {
9        $crate::pipeit_derive::tag_struct!($name)
10    };
11}
12